﻿

/* Toast message */

.toast-container {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 1000;
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.36, 1.24, 0.93, 1.25);
}

.show-toast {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

.toast-box {
    background: black;
    padding: 15px 50px 15px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    border-left: 5px solid gray;
}

.toast-messages {
    flex: 1;
}

.toast-head {
    font-size: 16px;
    font-weight: 600;
}

.toast-detail {
    font-size: 14px;
}

.toast-cross {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
}

    .toast-cross img {
        width: 12px;
    }

.toast-icon {
    background: rgba(128, 128, 128, 0.089);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .toast-icon img {
        width: 20px;
        display: none;
    }

.toast-detail {
    margin: 0;
}

.toast-success .toast-head {
    color: #379a43;
}

.toast-success .toast-icon {
    background: hsla(127, 47%, 41%, 0.1);
}

.toast-error .toast-head {
    color: #b72525;
}

.toast-error .toast-icon {
    background: rgba(183, 37, 37, 0.1);
}

.toast-warning .toast-head {
    color: #fd7a0c;
}

.toast-warning .toast-icon {
    background: rgba(253, 122, 12, 0.1);
}

.toast-info .toast-head {
    color: #1561fc;
}

.toast-info .toast-icon {
    background: rgba(21, 97, 252, 0.1);
}

.toast-success {
    border-color: #379a43;
}

.toast-error {
    border-color: #b72525;
}

.toast-info {
    border-color: #1561fc;
}

.toast-warning {
    border-color: #fd7a0c;
}

.toast-success .toast-icon .success-icon {
    display: block;
}

.toast-error .toast-icon .error-icon {
    display: block;
}

.toast-warning .toast-icon .warning-icon {
    display: block;
}

.toast-info .toast-icon .info-icon {
    display: block;
}
.img-fluid-team {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.swiper-slide .member {
    display:grid;
}


.pagination {
    display: flex;
    justify-content: center; /* Center align */
    padding-left: 0;
    list-style: none;
    margin: 20px 0;
}

.page-item {
    margin: 0 3px;
}

.page-link {
    color: #007bff;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    padding: 8px 14px;
    border-radius: 4px;
    transition: 0.2s ease-in-out;
}

    .page-link:hover {
        background-color: #007bff;
        color: #fff;
    }


.page-item.active .page-link {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

.page-item.next .page-link,
.page-item.lastpage .page-link {
    font-weight: 500;
    background-color: #f8f9fa;
}

    .page-item.next .page-link:hover,
    .page-item.lastpage .page-link:hover {
        background-color: #0056b3;
        color: #fff;
    }