.veb-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.veb-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.veb-dashboard-header h2 {
    margin: 0;
    font-size: 28px;
    color: #1e293b;
}

.veb-quick-actions {
    display: flex;
    gap: 10px;
}

.veb-button {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.veb-button-primary {
    background-color: #2563eb;
    color: white;
}

.veb-button-primary:hover {
    background-color: #1d4ed8;
}

.veb-button-secondary {
    background-color: #64748b;
    color: white;
}

.veb-button-secondary:hover {
    background-color: #475569;
}

.veb-button-danger {
    background-color: #dc2626;
    color: white;
}

.veb-button-danger:hover {
    background-color: #b91c1c;
}

.veb-button-small {
    padding: 6px 12px;
    font-size: 12px;
}

.veb-dashboard-grid {
    display: grid;
    gap: 30px;
}

.veb-dashboard-section {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.veb-dashboard-section h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #1e293b;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.veb-children-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.veb-child-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.veb-child-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.veb-child-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.veb-child-card-header h4 {
    margin: 0;
    font-size: 16px;
    color: #1e293b;
}

.veb-child-actions {
    display: flex;
    gap: 5px;
}

.veb-icon-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.veb-icon-button:hover {
    opacity: 1;
}

.veb-child-card-body p {
    margin: 5px 0;
    font-size: 14px;
    color: #475569;
}

.veb-bookings-list {
    display: grid;
    gap: 15px;
}

.veb-booking-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
}

.veb-booking-past {
    opacity: 0.7;
}

.veb-booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.veb-booking-header h4 {
    margin: 0;
    font-size: 16px;
    color: #1e293b;
}

.veb-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.veb-badge-success {
    background-color: #dcfce7;
    color: #166534;
}

.veb-badge-secondary {
    background-color: #e2e8f0;
    color: #475569;
}

.veb-badge-inactive {
    background-color: #fee2e2;
    color: #991b1b;
}

.veb-booking-body p {
    margin: 5px 0;
    font-size: 14px;
    color: #475569;
}

.veb-booking-footer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}

.veb-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.veb-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.veb-modal-close {
    color: #64748b;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.veb-modal-close:hover {
    color: #1e293b;
}

.veb-modal-content h3 {
    margin: 0 0 20px 0;
    font-size: 22px;
    color: #1e293b;
}

.veb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.veb-form-group {
    margin-bottom: 15px;
}

.veb-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
}

.veb-form-group input[type="text"],
.veb-form-group input[type="email"],
.veb-form-group input[type="date"],
.veb-form-group input[type="time"],
.veb-form-group textarea,
.veb-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.veb-form-group input:focus,
.veb-form-group textarea:focus,
.veb-form-group select:focus {
    outline: none;
    border-color: #2563eb;
}

.veb-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.veb-browse-clubs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.veb-browse-header {
    margin-bottom: 30px;
}

.veb-browse-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #1e293b;
}

.veb-schools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.veb-school-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.veb-school-card:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.veb-school-card.selected {
    border-color: #2563eb;
    background-color: #eff6ff;
}

.veb-school-card h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #1e293b;
}

.veb-clubs-section {
    margin-top: 30px;
}

.veb-clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.veb-club-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.veb-club-card h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #1e293b;
}

.veb-club-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.veb-club-meta-item {
    font-size: 13px;
    color: #64748b;
}

.veb-club-price {
    font-size: 20px;
    font-weight: bold;
    color: #2563eb;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .veb-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .veb-children-grid,
    .veb-schools-grid,
    .veb-clubs-grid {
        grid-template-columns: 1fr;
    }

    .veb-form-row {
        grid-template-columns: 1fr;
    }

    .veb-modal-content {
        margin: 10% auto;
        width: 95%;
    }
}
