/* Volunteer Booking System Styles */
.vb-slots-grid, .vb-auth-container {
    font-family: 'Satoshi', sans-serif;
    color: #1A1A1A;
    max-width: 900px;
    margin: 0 auto;
}

.vb-date-header {
    background-color: #2F6FED;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px 8px 0 0;
    margin-top: 30px;
    margin-bottom: 0;
}

.vb-date-header h4 {
    margin: 0;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #fff;
}

.vb-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: none;
    padding: 24px;
    transition: all 0.2s ease;
}

.vb-card:last-child {
    border-radius: 0 0 8px 8px;
    border-bottom: 1px solid #e5e7eb;
}

.vb-card:hover {
    background: #F5F7FB;
}

.vb-card-content {
    flex: 1;
}

.vb-slot-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 500;
    color: #cc0000; /* Matching the visual theme for titles */
}

.vb-slot-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.vb-slot-meta i {
    font-size: 16px;
    margin-top: 2px;
}

.vb-slot-desc {
    font-size: 14px;
    color: #444;
}

/* Buttons */
.vb-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.vb-btn-primary {
    background: #cc0000;
    color: white;
}

.vb-btn-primary:hover {
    background: #a30000;
    color: white;
}

.vb-btn-danger {
    background: #F5F7FB;
    color: #cc0000;
    border: 1px solid #cc0000;
}

.vb-btn-danger:hover {
    background: #ffe6e6;
}

.vb-btn-disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

/* Auth Cards */
.vb-auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.vb-auth-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

@media (max-width: 600px) {
    .vb-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .vb-auth-container {
        grid-template-columns: 1fr;
    }
}