.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 24px;
    font-weight: 600;
    color: #0066CC;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

.section-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-header h3 {
    font-size: 16px;
    color: #333;
}

.section-badge {
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    color: #666;
}

.booking-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.booking-item:last-child {
    border-bottom: none;
}

.booking-time {
    width: 70px;
    font-weight: 600;
    color: #0066CC;
}

.booking-main {
    flex: 1;
}

.booking-boat {
    display: block;
    font-weight: 500;
    color: #333;
}

.booking-client {
    font-size: 12px;
    color: #666;
}

.booking-status {
    width: 90px;
    text-align: right;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.status-badge.confirmed {
    background: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.section-link {
    width: 100%;
    padding: 12px;
    background: #f8f9fa;
    border: none;
    border-radius: 8px;
    color: #0066CC;
    font-weight: 500;
    cursor: pointer;
    margin-top: 15px;
    text-align: center;
}

.section-link:hover {
    background: #e9ecef;
}

.pending-urgent {
    background: #fff3cd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.urgent-message {
    font-size: 14px;
    color: #856404;
    margin-bottom: 10px;
}

.urgent-button {
    background: #0066CC;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.urgent-button:hover {
    background: #0052a3;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .booking-item {
        flex-wrap: wrap;
    }
    
    .booking-time {
        width: auto;
        margin-right: 10px;
    }
    
    .booking-status {
        width: auto;
        margin-left: auto;
    }
    
    .booking-main {
        width: 100%;
        margin-top: 5px;
    }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-header h2 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.toggle-stats {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.toggle-stats:hover {
    opacity: 1;
}