/* Mous............................................................................ */
/* Style for the Table Container */
.table-responsive {
    border: 1px solid #dee2e6;
    overflow: hidden; /* Keeps the rounded corners clean */
}

/* Custom Table Styling */
.custom-mou-table thead {
    background-color: #004085; /* Professional Deep Blue */
    color: white;
}

.custom-mou-table th {
    padding: 15px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.custom-mou-table td {
    padding: 12px 20px;
    vertical-align: middle;
    color: #495057;
    font-size: 1rem;
}

/* Zebra Striping */
.custom-mou-table tbody tr:nth-of-type(odd) {
    background-color: #f8f9fa;
}

/* Hover Effect */
.custom-mou-table tbody tr:hover {
    background-color: #e9ecef;
    transition: background-color 0.2s ease;
}

/* Country Badge Style */
.badge-country {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    background-color: #e2e3e5;
    color: #383d41;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Main Heading Color */
.mainTextcolor {
    color: #004085;
    position: relative;
    padding-bottom: 10px;
}

.mainTextcolor::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #007bff;
}


/* visits.................................................................................. */
/* Visit Card Styling */
.visit-card {
    border-radius: 15px;
    border-left: 5px solid #007bff !important; /* Blue accent bar on the left */
    transition: transform 0.3s ease;
}

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

.visit-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Image Gallery Alignment */
.visit-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.gallery-item {
    max-width: 450px; /* Increased size for better visibility */
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Sidebar Active State */
.custom-nav a.active {
    color: #007bff;
    font-weight: 700;
}

