/* GFAVIP Account Custom Styles */

body {
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
}

.card {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}

.alert {
    border-radius: 8px;
}

.nav-tabs .nav-link {
    border-radius: 8px 8px 0 0;
}

.nav-pills .nav-link {
    border-radius: 8px;
}

.btn {
    border-radius: 6px;
}

.form-control, .form-select {
    border-radius: 6px;
}

/* Status badges */
.badge {
    font-size: 0.75em;
}

/* Admin section styling */
.admin-section {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 1rem 0;
}

/* Request status colors */
.status-pending {
    color: #ffc107;
}

.status-confirmed {
    color: #198754;
}

.status-rejected {
    color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 1rem;
    }
    
    .nav-tabs {
        flex-direction: column;
    }
    
    .nav-tabs .nav-link {
        text-align: center;
    }
}