* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #1a1a1a;
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.6;
}

.layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Top Navigation Menu - Dark Theme */
.top-nav {
    background: #000000;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    flex-shrink: 0;
    border-bottom: none;
    box-shadow: none;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
}

.nav-title {
    font-weight: 700;
    color: #ffffff;
}

.pure-menu-list {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.pure-menu-item {
    position: relative;
}

.pure-menu-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #888888;
    border-radius: 0;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    margin: 0;
    border: none;
    background: none;
}

.pure-menu-link:hover {
    background: none;
    color: #ffffff;
    transform: none;
}

.pure-menu-item.active .pure-menu-link {
    background: none;
    color: #ffffff;
    font-weight: 600;
    border-bottom: 2px solid #007AFF;
}

.pure-menu-item.active .pure-menu-link::after {
    display: none;
}

/* Connection Counter */
.connection-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.connection-counter:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.connection-counter:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.2);
}

.connection-counter:focus {
    outline: 2px solid #007AFF;
    outline-offset: 2px;
}

.connection-counter:focus:not(:focus-visible) {
    outline: none;
}

.counter-icon {
    font-size: 1rem;
}

.counter-label {
    color: #cccccc;
}

.counter-value {
    font-weight: 700;
    color: #00ff88;
    min-width: 20px;
    text-align: center;
}

.counter-status {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

.counter-status.connected {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.counter-status.disconnected {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
}

.counter-status.connecting {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    animation: pulse 1.5s infinite;
}

.counter-arrow {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-left: 4px;
    transition: all 0.2s ease;
}

.connection-counter:hover .counter-arrow {
    opacity: 1;
    transform: translateX(2px);
}

.nav-text {
    font-size: 0.9rem;
}

/* Main Content */
.main-content {
    flex: 1;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    padding: 24px;
    gap: 24px;
    display: flex;
    background: #1a1a1a;
}

.controls-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    height: 100%;
    min-height: 0;
    flex: 0 0 400px;
}

.connection-panel,
.message-panel {
    background: #2a2a2a;
    border-radius: 16px;
    padding: 24px;
    box-shadow: none;
    flex-shrink: 0;
    border: 1px solid #404040;
    transition: all 0.2s ease;
}

.connection-panel:hover,
.message-panel:hover {
    box-shadow: none;
}

.logs-panel {
    background: #2a2a2a;
    border-radius: 16px;
    padding: 24px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    flex: 1;
    border: 1px solid #404040;
    transition: all 0.2s ease;
}

.logs-panel:hover {
    box-shadow: none;
}

.log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.log-header h2 {
    margin: 0;
    color: #ffffff;
    border-bottom: none;
    padding-bottom: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.log-controls {
    display: flex;
    gap: 8px;
}

h2 {
    color: #ffffff;
    margin-bottom: 20px;
    border-bottom: none;
    padding-bottom: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.pure-control-group {
    margin-bottom: 20px;
}

.pure-controls {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pure-input-1 {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #404040;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background: #1a1a1a;
    color: #ffffff;
}

.pure-input-1:focus {
    outline: none;
    border-color: #007AFF;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.pure-input-1::placeholder {
    color: #888888;
}

textarea.pure-input-1 {
    resize: vertical;
    min-height: 80px;
}

/* Pure.CSS Button Enhancements - Dark Theme */
.pure-button {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 12px 20px;
    border: 1px solid #404040;
    position: relative;
    overflow: hidden;
    background: #2a2a2a;
    color: #ffffff;
}

.pure-button:hover {
    transform: none;
    box-shadow: none;
    background: #404040;
}

.pure-button:active {
    transform: none;
    box-shadow: none;
}

.pure-button-primary {
    background: #007AFF;
    color: white;
    border-color: #007AFF;
}

.pure-button-primary:hover {
    background: #0056CC;
    border-color: #0056CC;
}

.pure-button-success {
    background: #34C759;
    color: white;
    border-color: #34C759;
}

.pure-button-success:hover {
    background: #28A745;
    border-color: #28A745;
}

.pure-button-small {
    padding: 8px 12px;
    font-size: 0.8rem;
    border-radius: 6px;
    background: #2a2a2a;
    color: #888888;
    border: 1px solid #404040;
}

.pure-button-small:hover {
    background: #404040;
    color: #ffffff;
}

/* Template Buttons */
.template-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.btn-template {
    background: #2a2a2a;
    border: 1px solid #404040;
    color: #ffffff;
    text-align: left;
    padding: 12px 16px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.btn-template:hover {
    background: #404040;
    border-color: #505050;
    color: #ffffff;
}

.btn-template.active {
    background: #007AFF;
    color: white;
    border-color: #007AFF;
}

/* Connection Status */
.connection-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 16px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #404040;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.connected {
    background: #34C759;
    box-shadow: 0 0 6px rgba(52, 199, 89, 0.4);
    animation: pulse 2s infinite;
}

.status-indicator.disconnected {
    background: #FF3B30;
}

.status-indicator.connecting {
    background: #FF9500;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Log Container */
.log-container {
    flex: 1;
    overflow-y: auto;
    border: 1px solid #404040;
    border-radius: 8px;
    padding: 16px;
    background: #1a1a1a;
    min-height: 0;
    max-height: none;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 0.8rem;
    height: 100%;
    line-height: 1.4;
}

.log-entry {
    margin-bottom: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    border-left: 3px solid transparent;
}

.log-entry.info {
    background: #1a3a5f;
    color: #7dd3fc;
    border-left-color: #0ea5e9;
}

.log-entry.success {
    background: #1a4d2e;
    color: #86efac;
    border-left-color: #22c55e;
}

.log-entry.error {
    background: #4c1d1d;
    color: #fca5a5;
    border-left-color: #ef4444;
}

.log-entry.warning {
    background: #4c3d1d;
    color: #fde047;
    border-left-color: #eab308;
}

.log-entry.sent {
    background: #1a3a5f;
    color: #7dd3fc;
    border-left-color: #0ea5e9;
}

.log-entry.received {
    background: #3a1a5f;
    color: #c4b5fd;
    border-left-color: #8b5cf6;
}

.timestamp {
    color: #888888;
    font-size: 0.7rem;
}

/* Monitor Page */
.page-content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    background: #1a1a1a;
    display: none;
    height: 100%;
    min-height: 0;
}

.page-content.active {
    display: block;
}

.monitor-content {
    background: #2a2a2a;
    border-radius: 16px;
    padding: 24px;
    box-shadow: none;
    height: 100%;
    border: 1px solid #404040;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.monitor-content h2 {
    margin-bottom: 24px;
    flex-shrink: 0;
}

.monitor-stats {
    gap: 20px;
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.stat-card {
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: none;
    margin-bottom: 20px;
    border: 1px solid #404040;
    flex: 1;
    min-width: 200px;
    transition: all 0.2s ease;
}

.stat-card:hover {
    border-color: #404040;
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 1.75rem;
    opacity: 0.8;
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
    min-width: 0;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 4px;
    color: #888888;
    white-space: nowrap;
}

.monitor-queues {
    margin-top: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.monitor-queues h3 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Connection List */
.monitor-connections {
    margin-top: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.monitor-connections h3 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.connection-list {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.connection-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.connection-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.connection-info {
    flex: 1;
    min-width: 0;
}

.connection-id {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 6px;
    word-break: break-all;
}

.connection-details {
    font-size: 0.8rem;
    color: #cccccc;
    line-height: 1.4;
}

.connection-status-badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    flex-shrink: 0;
    margin-left: 16px;
    letter-spacing: 0.5px;
    min-width: 80px;
    text-align: center;
}

.connection-status-badge.connected {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.connection-status-badge.disconnected {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.no-connections {
    text-align: center;
    color: #888888;
    font-style: italic;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.queue-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.queue-item {
    background: #2a2a2a;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: none;
    border: 1px solid #404040;
    transition: all 0.2s ease;
}

.queue-item:hover {
    border-color: #404040;
    background: rgba(255, 255, 255, 0.02);
}

.queue-name {
    font-weight: 500;
    color: #ffffff;
    font-size: 0.9rem;
}

.queue-status {
    background: #34C759;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.queue-count {
    color: #888888;
    font-size: 0.9rem;
}

/* Template Forms */
#login-template,
#data-template {
    display: none;
    padding: 16px;
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.3);
    border-radius: 8px;
    margin-top: 16px;
}

#login-template h3,
#data-template h3 {
    margin-top: 0;
    color: #007AFF;
    font-size: 1rem;
}

/* Mobile Responsive */
/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 4px;
}

.hamburger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s;
}

.menu-open .hamburger-menu span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-open .hamburger-menu span:nth-child(2) {
    opacity: 0;
}

.menu-open .hamburger-menu span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .top-nav {
        padding: 0 16px;
        height: 56px;
        position: relative;
    }
    
    .nav-brand {
        font-size: 1rem;
    }
    
    .nav-title {
        display: block; /* Keep title visible on mobile */
    }
    
    .pure-menu-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000000;
        flex-direction: column;
        display: none;
        box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        z-index: 1000;
    }
    
    .pure-menu-list.mobile-menu-open {
        display: flex;
    }
    
    .pure-menu-item {
        width: 100%;
    }
    
    .pure-menu-link {
        padding: 12px 16px;
        width: 100%;
        justify-content: flex-start;
    }
    
    .nav-text {
        display: inline; /* Keep nav text visible in mobile menu */
    }
    
    .main-content {
        padding: 16px;
        flex-direction: column;
    }
    
    .controls-panel {
        flex: none;
        height: auto;
        order: 2;
    }
    
    .logs-panel {
        order: 1;
        height: 300px;
        flex: none;
    }
    
    .template-buttons {
        grid-template-columns: 1fr;
    }
    
    .pure-button {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .monitor-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-card {
        margin-bottom: 16px;
        min-width: auto;
        flex: none;
    }
    
    .monitor-content {
        padding: 16px;
    }
    
    .connection-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .connection-status-badge {
        margin-left: 0;
        align-self: flex-end;
    }
    
    .queue-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .page-content {
        padding: 16px;
    }
}

/* Template Forms */
.template-form {
    margin-top: 16px;
    padding: 16px;
    background: #2a2a2a;
    border-radius: 8px;
    border: 1px solid #444;
}

.template-form h3 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 600;
}

.template-form .pure-control-group {
    margin-bottom: 12px;
}

.template-form .pure-control-group label {
    color: #cccccc;
    font-weight: 500;
    margin-bottom: 4px;
    display: block;
}

.template-form .pure-input-1 {
    background: #1a1a1a;
    border: 1px solid #555;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
}

.template-form .pure-input-1:focus {
    border-color: #007acc;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 122, 204, 0.2);
}

.template-form .pure-controls {
    margin-top: 16px;
}

.template-form .pure-button {
    background: #007acc;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.template-form .pure-button:hover {
    background: #005a9e;
}

.template-form .pure-button:active {
    background: #004080;
}

/* Template button active state */
.btn-template.active {
    background: #007acc !important;
    color: #ffffff !important;
    border-color: #007acc !important;
}

/* Vehicles Page Styles */
.vehicles-content {
    padding: 20px;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
}

.vehicles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.vehicles-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
}

.vehicles-controls {
    display: flex;
    gap: 10px;
}

.vehicles-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.vehicles-filters {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.vehicles-filters label {
    color: #cccccc;
    margin-right: 10px;
}

.vehicles-filters select,
.vehicles-filters input {
    background: #0a0a0a;
    border: 1px solid #555;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
}

.vehicles-table-container {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.vehicles-table {
    width: 100%;
    background: #1a1a1a;
    color: #ffffff;
}

.vehicles-table thead {
    background: #2a2a2a;
}

.vehicles-table th {
    padding: 12px;
    text-align: left;
    color: #cccccc;
    font-weight: 600;
    border-bottom: 2px solid #333;
}

.vehicles-table td {
    padding: 12px;
    border-bottom: 1px solid #333;
    color: #ffffff;
}

.vehicles-table tbody tr:hover {
    background: #252525;
}

.vehicle-imei {
    font-family: 'Courier New', monospace;
    font-weight: 500;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background: #22c55e;
    color: #ffffff;
}

.status-inactive {
    background: #6b7280;
    color: #ffffff;
}

.status-suspended {
    background: #ef4444;
    color: #ffffff;
}

.status-maintenance {
    background: #f59e0b;
    color: #ffffff;
}

.connection-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.connection-online {
    background: #22c55e;
    color: #ffffff;
}

.connection-offline {
    background: #6b7280;
    color: #ffffff;
}

.vehicles-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.vehicles-pagination button {
    background: #007acc;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.vehicles-pagination button:hover:not(:disabled) {
    background: #005a9e;
}

.vehicles-pagination button:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
}

#pageInfo {
    color: #cccccc;
    font-weight: 500;
}

.no-vehicles {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 40px 20px;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
}

.modal-content {
    background: #1a1a1a;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #333;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
    color: #ffffff;
}

.modal-content h3 {
    margin-top: 0;
    color: #ffffff;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.modal-content .pure-control-group {
    margin-bottom: 20px;
}

.modal-content label {
    color: #cccccc;
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.modal-content input {
    background: #0a0a0a;
    border: 1px solid #555;
    color: #ffffff;
    padding: 10px;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.modal-content input:focus {
    border-color: #007acc;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 122, 204, 0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 20px;
}

.close:hover,
.close:focus {
    color: #fff;
}

.error-message {
    background: #dc2626;
    color: #ffffff;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}

.button-danger {
    background: #dc2626 !important;
    color: #ffffff !important;
}

.button-danger:hover {
    background: #b91c1c !important;
}

.pure-button-small {
    padding: 4px 8px;
    font-size: 12px;
}

.pure-button-success {
    background: #22c55e;
    color: #ffffff;
}

.pure-button-success:hover {
    background: #16a34a;
}

/* Edit modal specific styles */
.modal-divider {
    border: none;
    border-top: 1px solid #333;
    margin: 20px 0;
}

.modal-content h4 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
}

.field-help {
    display: block;
    color: #999;
    font-size: 12px;
    margin-top: 5px;
    font-style: italic;
}

.success-message {
    background: #22c55e;
    color: #ffffff;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
}

input[disabled] {
    background: #333 !important;
    color: #999 !important;
    cursor: not-allowed;
}

/* Password fields styling */
input[type="password"] {
    background: #0a0a0a;
    border: 1px solid #555;
    color: #ffffff;
    padding: 10px;
    border-radius: 4px;
}

input[type="password"]:focus {
    border-color: #007acc;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 122, 204, 0.2);
}

/* Select dropdown in modal */
.modal-content select {
    background: #0a0a0a;
    border: 1px solid #555;
    color: #ffffff;
    padding: 10px;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.modal-content select:focus {
    border-color: #007acc;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 122, 204, 0.2);
}

/* Edit button styling in table */
.vehicles-table button.pure-button-small:first-child {
    background: #007acc;
    color: #ffffff;
    margin-right: 5px;
}

.vehicles-table button.pure-button-small:first-child:hover {
    background: #005a9e;
} 