#searchButtonContainer {
    display: flex !important;
    align-items: end !important;
    justify-content: end;
}

.rangeMode{
    top: 160px !important;
}

.spinner-container {
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
}

.spinner-border.custom-spinner {
    width: 2.3rem;
    height: 2.3rem;
    border-width: 0.35rem;
}

/* Biztosítjuk, hogy a toast container a jobb alsó sarokban legyen */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* Alap toast stílus */
.toast {
    min-width: 250px;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff; /* Fehér szöveg */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

/* Animáció, hogy ne hirtelen tűnjön fel a toast */
@keyframes fadeIn {
    to { opacity: 1; }
}


/* Success üzenet (zöld) */
.toast-success {
    background-color: #5cb85c;
    border: 1px solid #4cae4c;
}

/* Error üzenet (piros) */
.toast-error {
    background-color: #d9534f;
    border: 1px solid #d43f3a;
}

/* Info üzenet (kék) */
.toast-info {
    background-color: #5bc0de;
    border: 1px solid #46b8da;
}

/* Warning üzenet (narancssárga) */
.toast-warning {
    background-color: #f0ad4e;
    border: 1px solid #eea236;
}

.notify-dot{
    width: 15px;
    height: 15px;
    background: linear-gradient(to right, #0a58ca, #0a6dca);
    border-radius: 50%;
}

.unread-notification {
    font-weight: bold;
}

.read-notification {
    opacity: 0.7;
}
