﻿ 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;
    }

.tabs-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    height: 2.5rem;  h-10 
    align-items: center;
    justify-content: center;
    padding: 0.25rem;  p-1 
    border-radius: 0.375rem;  rounded-md 
    background-color: #f5f5f5;  Tailwind's 'bg-muted' 
    color: #6b7280;  text-muted-foreground 
}

.tab-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;  space-x-2 
    padding: 0.375rem 0.75rem;  px-3 py-1.5 
    font-size: 0.875rem;  text-sm 
    font-weight: 500;  font-medium 
    white-space: nowrap;
    border: none;
    border-radius: 0.25rem;  rounded-sm 
    background-color: transparent;
    color: inherit;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

    .tab-button:focus-visible {
        outline: none;
        box-shadow: 0 0 0 2px #3b82f6;  ring-2 ring-ring 
    }

    .tab-button:hover,
    .tab-button[data-state="active"] {
        background-color: #ffffff;  bg-background 
        color: #1f2937;  text-foreground 
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);  shadow-sm 
    }

    .tab-button:disabled {
        opacity: 0.5;
        pointer-events: none;
    }

.icon {
    width: 1rem;  w-4 
    height: 1rem;  h-4 
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
