/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Updated Header Styles - Consistent traffic light design */
.status-header, .header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 20px;
    margin: -20px -20px 30px -20px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.header-left {
    flex: 1;
}

.status-question, .header h1 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.user-greeting {
    font-size: 16px;
    opacity: 0.9;
    margin: 5px 0 0 0;
}

.header-right {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Notification bell styling for header */
.notification-bell {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.notification-bell:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.notification-bell-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Styles */
.form-container {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control:disabled {
    background: #f8f9fa;
    color: #6c757d;
}

/* Enhanced Button Styles with Traffic Light Pattern */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.btn:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-full {
    width: 100%;
}

/* Large button style for connection requests */
.btn-large {
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.btn-large:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.btn-secondary {
    background: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-success {
    background: #28a745;
}

.btn-success:hover {
    background: #218838;
}

.btn-danger {
    background: #dc3545;
}

.btn-danger:hover {
    background: #c82333;
}

/* Legacy profile buttons */
.profile-btn-purple {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.profile-btn-purple:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.profile-btn-purple-small {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.profile-btn-purple-small:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.profile-btn-purple-small.deny {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.profile-btn-purple-small.deny:hover {
    background: linear-gradient(135deg, #c82333, #a71e2a);
}

/* Traffic Light Circular Buttons - Core Design Pattern */
.voting-section {
    text-align: center;
    margin: 40px 0;
}

.voting-section h2 {
    margin-bottom: 30px;
    color: #333;
    font-weight: 400;
    font-size: 20px;
}

.traffic-light-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.traffic-light {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.traffic-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.traffic-light:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.traffic-light:hover::before {
    opacity: 0.8;
}

.traffic-light:active {
    transform: scale(0.95);
}

.traffic-light.bad {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.traffic-light.okay {
    background: linear-gradient(135deg, #ffa500, #e89500);
}

.traffic-light.good {
    background: linear-gradient(135deg, #28a745, #20723d);
}

/* Legacy vote buttons compatibility */
.vote-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 300px;
    margin: 0 auto;
}

.vote-btn {
    padding: 20px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.vote-btn.bad {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.vote-btn.okay {
    background: linear-gradient(135deg, #ffa500, #e89500);
}

.vote-btn.good {
    background: linear-gradient(135deg, #28a745, #20723d);
}

.vote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Enhanced Status Display */
.status-display {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.status-display.good {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #f8fff8, #ffffff);
}

.status-display.okay {
    border-left-color: #ffa500;
    background: linear-gradient(135deg, #fffef8, #ffffff);
}

.status-display.bad {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff8f8, #ffffff);
}

/* Alert Sections */
.alert-section {
    padding: 15px 20px;
    border-radius: 12px;
    margin: 20px 0;
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.alert-section.emergency {
    background: linear-gradient(135deg, #f8d7da, #ffffff);
    border-color: #dc3545;
    color: #721c24;
}

/* Enhanced Dashboard Stats with Traffic Light Design */
.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-stats .stat-card:nth-child(3) {
    grid-column: 1 / -1;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* Traffic Light Mini Indicators */
.traffic-light-mini {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.traffic-light-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
    border-radius: 50%;
}

.traffic-light-mini:hover {
    transform: scale(1.05);
}

.traffic-light-mini.good {
    background: linear-gradient(135deg, #28a745, #20723d);
}

.traffic-light-mini.okay {
    background: linear-gradient(135deg, #ffa500, #e89500);
}

.traffic-light-mini.bad {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.traffic-light-mini .stat-number {
    color: white;
    font-size: 24px;
    font-weight: bold;
    z-index: 1;
}

.traffic-light-mini .status-text {
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    z-index: 1;
}

/* Enhanced Connections */
.connections-list {
    background: white;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.connection-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.connection-item:hover {
    background: #f8f9fa;
}

.connection-item:last-child {
    border-bottom: none;
}

/* Enhanced connection item styles for check-in status */
.enhanced-connection-item {
    align-items: flex-start;
    padding: 25px 20px;
}

.connection-info {
    flex: 1;
}

.connection-info-enhanced {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.connection-header-enhanced {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.connection-name {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.connection-status {
    color: #666;
    font-size: 14px;
}

/* Check-in status display styles */
.connection-checkin-status {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
}

.checkin-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkin-status-text {
    font-size: 14px;
    color: #333;
}

.checkin-status-text.no-checkin {
    color: #6c757d;
    font-style: italic;
}

.checkin-date {
    font-size: 12px;
    color: #6c757d;
}

.checkin-notes {
    font-size: 12px;
    color: #495057;
    font-style: italic;
    margin-top: 4px;
    padding: 6px 8px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 4px;
    border-left: 3px solid #667eea;
}

/* Connection status dots */
.connection-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.connection-status-dot.good {
    background: linear-gradient(135deg, #28a745, #20723d);
}

.connection-status-dot.okay {
    background: linear-gradient(135deg, #ffa500, #e89500);
}

.connection-status-dot.bad {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.connection-status-dot.no-status {
    background: #6c757d;
}

/* Enhanced Connection Grid */
.connection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.connection-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.connection-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.connection-card.needs-attention {
    border-left: 4px solid #dc3545;
    background: linear-gradient(135deg, #fff5f5, #ffffff);
}

.connection-card.emergency {
    border-left: 4px solid #ff6b6b;
}

.connection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.connection-type-badge {
    background: linear-gradient(135deg, #007cba, #0056b3);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.connection-type-badge.emergency {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

/* Enhanced Bottom Navigation */
.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 16px 0;
    margin: 30px -20px -20px -20px;
    position: relative;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.bottom-nav a {
    text-decoration: none;
    color: #9e9e9e;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
}

.bottom-nav a.active {
    color: #667eea;
    font-weight: 500;
    background: rgba(102, 126, 234, 0.1);
}

.bottom-nav a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

/* Enhanced Notifications */
.notification {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.notification.success {
    background: linear-gradient(135deg, #d4edda, #ffffff);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification.error {
    background: linear-gradient(135deg, #f8d7da, #ffffff);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.notification.warning {
    background: linear-gradient(135deg, #fff3cd, #ffffff);
    color: #856404;
    border: 1px solid #ffeaa7;
}

.notification.info {
    background: linear-gradient(135deg, #d1ecf1, #ffffff);
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Quick Notifications */
.quick-notifications {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.notification-item-small {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.notification-item-small:hover {
    background: #f8f9fa;
}

.notification-item-small:last-child {
    border-bottom: none;
}

.notification-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.notification-dot.emergency { 
    background: linear-gradient(135deg, #dc3545, #c82333); 
}
.notification-dot.warning { 
    background: linear-gradient(135deg, #ffc107, #e0a800); 
}
.notification-dot.info { 
    background: linear-gradient(135deg, #17a2b8, #138496); 
}
.notification-dot.success { 
    background: linear-gradient(135deg, #28a745, #20723d); 
}

/* Traffic Light Status Indicators */
.traffic-light-indicator {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.traffic-light-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
    border-radius: 50%;
}

.traffic-light-indicator.good {
    background: linear-gradient(135deg, #28a745, #20723d);
}

.traffic-light-indicator.okay {
    background: linear-gradient(135deg, #ffa500, #e89500);
}

.traffic-light-indicator.bad {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.traffic-light-indicator .status-text {
    color: white;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    z-index: 1;
}

/* Connection Status Display */
.connection-status-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
}

.status-time {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.no-checkin .traffic-light-indicator {
    width: 50px;
    height: 50px;
}

.connection-notes {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 12px;
    border-radius: 8px;
    font-style: italic;
    font-size: 14px;
    color: #666;
    margin-top: 12px;
    border-left: 3px solid #e0e0e0;
}

/* Traffic Light Stats Layout */
.traffic-light-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.traffic-light-stats-profile {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.traffic-light-stat-card {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

/* Days since helper */
.days-since {
    font-size: 14px;
    font-weight: bold;
    text-align: right;
    min-width: 60px;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .header-content {
        padding: 0 10px;
    }
    
    .header-left {
        position: relative;
        left: auto;
        text-align: left;
    }
    
    .header-right {
        position: absolute;
        right: 10px;
        left: auto;
        transform: none;
    }

    .vote-buttons {
        max-width: 250px;
    }

    .vote-btn {
        padding: 15px;
        font-size: 16px;
    }

    .traffic-light {
        width: 100px;
        height: 100px;
        font-size: 16px;
    }

    .traffic-light-mini {
        width: 60px;
        height: 60px;
    }

    .traffic-light-mini .stat-number {
        font-size: 16px;
    }

    .connection-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .traffic-light-stats, .traffic-light-stats-profile {
        flex-direction: column;
        align-items: center;
    }

    .traffic-light-stat-card {
        flex: none;
        width: 120px;
    }

    .bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e0e0e0;
        padding: 12px 0;
        z-index: 1000;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
        margin: 0;
    }
    
    .bottom-nav a {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .main-content {
        padding-bottom: 80px;
    }

    .connection-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .enhanced-connection-item {
        padding: 20px 15px;
    }

    .connection-checkin-status {
        margin-top: 8px;
        padding: 10px;
    }

    .checkin-info {
        gap: 6px;
    }

    .connection-status-display {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .header-left h1 {
        font-size: 18px;
    }
    
    .header-left p {
        font-size: 14px;
    }
    
    .header-content {
        position: relative;
    }
    
    .header-left {
        text-align: left;
    }
    
    .header-right {
        position: absolute;
        right: 0;
        left: auto;
        transform: none;
    }

    .traffic-light {
        width: 90px;
        height: 90px;
        font-size: 14px;
    }

    .traffic-light-mini {
        width: 50px;
        height: 50px;
    }

    .traffic-light-mini .stat-number {
        font-size: 14px;
    }

    .form-container {
        padding: 20px;
    }

    .btn-large {
        padding: 16px 20px;
        font-size: 16px;
    }

    .enhanced-connection-item {
        padding: 15px 10px;
    }

    .connection-checkin-status {
        padding: 8px;
    }

    .connection-card {
        padding: 15px;
    }
}

/* Animation Enhancements */
@keyframes pulse {
    0% { 
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4); 
    }
    70% { 
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); 
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); 
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    }
}

.connection-card.needs-attention {
    animation: pulse 2s infinite;
}

.traffic-light:focus,
.traffic-light-mini:focus,
.traffic-light-indicator:focus {
    animation: glow 1s ease-in-out;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .traffic-light, .traffic-light-mini, .traffic-light-indicator {
        border: 2px solid #000;
    }
    
    .status-header {
        background: #000;
    }
    
    .connection-card {
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .traffic-light,
    .traffic-light-mini,
    .traffic-light-indicator,
    .btn,
    .connection-card {
        transition: none;
        animation: none;
    }
}

/* Dark mode support (future enhancement) */
@media (prefers-color-scheme: dark) {
    body {
        background: #1a1a1a;
        color: #e0e0e0;
    }
    
    .connection-card,
    .stat-card,
    .form-container,
    .quick-notifications {
        background: #2d2d2d;
        border-color: #444;
        color: #e0e0e0;
    }
    
    .form-control {
        background: #3d3d3d;
        border-color: #555;
        color: #e0e0e0;
    }
    
    .bottom-nav {
        background: #2d2d2d;
        border-color: #444;
    }
}