.page-link:hover {
    cursor: pointer;
}

@media (max-width: 992px) {
    .root {
        display: block !important;
    }
}

/* Container */
.toast-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem;
    margin-bottom: 3rem;
    z-index: 1055; /* Above normal content */
}

/* Toast base */
.toast {
    display: flex;
    align-items: center;
    width: 300px;
    background-color: #0d6efd; /* Bootstrap Primary color */
    color: #fff;
    border: none;
    border-radius: 0.375rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

    /* Toast visible */
    .toast.show {
        opacity: 1;
    }

/* Toast body */
.toast-body {
    flex: 1 1 auto;
    padding: 0.5rem 0;
}

/* Button Close */
.btn-close {
    background: none;
    border: none;
    opacity: 0.7;
    cursor: pointer;
    filter: invert(1); /* White close button */
    width: 1rem;
    height: 1rem;
}

    /* Button Close hover */
    .btn-close:hover {
        opacity: 1;
    }

/* Toast background variations */
.text-bg-primary {
    background-color: #0d6efd !important;
}

.text-bg-success {
    background-color: #198754 !important;
}

.text-bg-danger {
    background-color: #dc3545 !important;
}

.text-bg-info {
    background-color: #0dcaf0 !important;
}

/* Toast d-flex utility */
.d-flex {
    display: flex;
}

/* Toast positioning */
.m-auto {
    margin: auto;
}

.me-2 {
    margin-right: 0.5rem;
}

.p-3 {
    padding: 1rem;
}

/* Bottom margin */
.mb-5 {
    margin-bottom: 3rem;
}
