/* VAFS Consolidated Styles */

/* Hover effects for cards */
.hover-shadow {
    transition: box-shadow 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.hover-shadow:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-2px);
}

/* Table styling */
.table th {
    border-top: none;
    font-weight: 600;
    color: #495057;
}

/* Clickable elements */
.clickable {
    cursor: pointer;
}

/* Mobile optimizations */
@media (max-width: 767.98px) {
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .card-body {
        padding: 0.75rem;
    }

    .modal-dialog {
        margin: 0.5rem;
    }

    .modal-body {
        padding: 1rem;
    }

    /* Improve touch targets */
    .btn {
        min-height: 44px;
    }

    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Navigation pills horizontal scroll */
.nav-pills.overflow-auto {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-pills.overflow-auto::-webkit-scrollbar {
    display: none;
}

/* VAFS Header Responsive Design */
.vafs-header-img {
    height: 120px;
    width: auto;
    margin-bottom: 1rem;
}

.vafs-header-title {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
}

.vafs-header-description {
    font-size: 1rem;
}

/* Desktop styles */
@media (min-width: 992px) {
    .vafs-header-img {
        height: 180px;
        margin-bottom: 1.5rem;
    }

    .vafs-header-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem !important;
    }

    .vafs-header-description {
        font-size: 1.25rem;
    }
}