
/* Custom pagination styling */
.pagination .page-item .page-link {
    color: #000;
    /* Default text color */
    border: 1px solid #ddd;
    /* Light border */
    padding: 8px 16px;
    /* Add padding for larger clickable area */
}

.pagination .page-item.active .page-link {
    background-color: #1e95c3;
    /* Blue background */
    color: white;
    /* White text for active page */
    border-color: #1e95c3;
    /* Remove border to match background */
}

.pagination .page-item:hover .page-link {
    background-color: #e9ecef;
    /* Light hover background */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    /* Disabled text color */
}

.pagination .page-item {
    margin: 2px;
    /* Add space between pagination items */
}

.main_container {
    padding: 1% 7%;
}

.main_container .btn {
    padding: 10px !important;
    background-color: #1e95c3;
    border-color: #1e95c3;
}

.main_container .card {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset !important;
}
.main_container .card-date{
    font-size: 13px;
}
.main_container .card-title{
    background-color: #e6f1fc;
    padding: 5px 10px;
    margin-bottom: 0px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 500;
}
.main_container button{
    background-color: var(--primary-blue-colour);
    color: white
}
.main_container button a{
    color: white;
    text-decoration: none;
    
}
.main_container .main-button{
    padding: 2px 10px;
}
.news_container{
    padding:2% 7%;
}
.news_container p{
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    border-radius: 10px;
    cursor: pointer;
}
/* Active effect to simulate click */
.news_container p:active {
    transform: scale(0.95); /* Slightly scale down when clicked */
    background-color: #ccc; /* Darker background on click */
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -1px 0px inset;
}
.news_container .active{
    background: #1e95c3;
    color: white;
}

/* // css for years tab section */
/* Remove border under tabs */
.nav-tabs {
    border-bottom: none;
}

/* Default tab styles */
.nav-link {
    border: 1px solid transparent;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: none;
    background-color: transparent;
    color: #555;
    padding: 12px 40px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    font-weight: bold;
}

/* Glassy and modern effect for active tab */
.nav-link.active {
    background: #e6f1fc !important;
    /* Glassy background */
    backdrop-filter: blur(10px);
    border-color: #ddd;
    border-top: 3px solid #00bfa6;
    /* Vibrant top border */
    border-radius: 12px 12px 0 0;
    /* Smooth corners */
    color: #1e95c3 !important;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    /* Light shadow for a floating effect */
}

/* Hover effect for inactive tabs */
.nav-link:hover {
    background-color: #f0f0f06b;
    color: #1e95c3;
    border-color: #bbb;
    cursor: pointer;
}

/* For the active tab's rounded corner */
/* .nav-item:first-child .nav-link {
    border-left: 1px solid #ddd;
} */

/* Align tabs in the center with more spacing */
.tabs-container {
    padding-top: 50px;
    text-align: center;
}

/* Content under tabs */
.tab-content {
    /* padding: 30px; */
    border: 1px solid #ddd;
    border-radius: 0 12px 12px 12px;
    /* Smooth corners on the bottom */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for the content */
    background-color: #ffffff;
}

/* Smooth transitions */
.tab-pane {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tab-pane.active {
    opacity: 1;
}
button:focus{
    outline: none !important;
}