113 lines
2.7 KiB
CSS
113 lines
2.7 KiB
CSS
body {
|
|
margin: 0;
|
|
overflow: hidden;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
#ui-toggle {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 20px;
|
|
z-index: 100; /* Above UI container */
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 8px;
|
|
background: white;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
|
|
font-size: 20px;
|
|
padding: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
border: none;
|
|
}
|
|
|
|
#ui-container {
|
|
position: absolute;
|
|
top: 70px; /* Moved down to make room for toggle */
|
|
left: 20px;
|
|
width: 280px;
|
|
background: rgba(255, 255, 255, 0.95);
|
|
backdrop-filter: blur(10px);
|
|
border-radius: 12px;
|
|
padding: 20px;
|
|
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
|
|
user-select: none;
|
|
max-height: 80vh;
|
|
overflow-y: auto;
|
|
|
|
/* Animation for toggling */
|
|
transition: transform 0.3s ease, opacity 0.3s ease;
|
|
transform-origin: top left;
|
|
}
|
|
|
|
/* Class to hide UI */
|
|
#ui-container.hidden {
|
|
transform: scale(0.95);
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.header h2 { margin: 0 0 5px 0; font-size: 18px; color: #333; }
|
|
.header p { margin: 0; font-size: 12px; color: #666; }
|
|
|
|
.section { margin-top: 20px; border-top: 1px solid #eee; padding-top: 15px; }
|
|
.section h3 { margin: 0 0 10px 0; font-size: 14px; text-transform: uppercase; color: #888; letter-spacing: 0.5px; }
|
|
|
|
.stat-row { display: flex; justify-content: space-between; font-weight: bold; margin-bottom: 10px; font-size: 16px; }
|
|
|
|
.button-row { display: flex; gap: 10px; }
|
|
button {
|
|
flex: 1;
|
|
padding: 8px 12px;
|
|
border: none;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
font-weight: 600;
|
|
font-size: 13px;
|
|
transition: opacity 0.2s;
|
|
}
|
|
button:hover { opacity: 0.8; }
|
|
|
|
.primary { background-color: #2563EB; color: white; }
|
|
.danger { background-color: #ef4444; color: white; }
|
|
.secondary { background-color: #e5e7eb; color: #374151; }
|
|
|
|
/* Route List */
|
|
#route-list { list-style: none; padding: 0; margin: 0; }
|
|
#route-list li {
|
|
background: #f3f4f6;
|
|
margin-bottom: 8px;
|
|
padding: 10px;
|
|
border-radius: 6px;
|
|
display: flex;
|
|
flex-wrap: wrap; /* Allow wrapping for buttons */
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 14px;
|
|
gap: 5px;
|
|
}
|
|
#route-list li span {
|
|
flex-grow: 1;
|
|
font-weight: 500;
|
|
}
|
|
|
|
#route-list li button {
|
|
flex: 0;
|
|
margin-left: 10px;
|
|
padding: 4px 8px;
|
|
font-size: 12px;
|
|
background: #fee2e2;
|
|
color: #991b1b;
|
|
}
|
|
|
|
.btn-icon {
|
|
flex: 0 0 auto;
|
|
padding: 4px 8px;
|
|
font-size: 12px;
|
|
margin-left: 2px;
|
|
}
|
|
.btn-edit { background: #dbeafe; color: #1e40af; }
|
|
.btn-del { background: #fee2e2; color: #991b1b; }
|