
@keyframes shake {
    0%, 100% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(8deg);
    }

    75% {
        transform: rotate(-8deg);
    }
}

.notification-box {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 90%;
    max-width: 90%;
    min-width: 90%;
    margin: auto;
    z-index: 9999;
    padding: 16px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(-30px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: grab;
    user-select: none;
    will-change: transform;
}

    .notification-box .content {
        overflow: hidden;
    }

    .notification-box .notification-title, .notification-box .notification-body {
        word-break: break-word;
        white-space: normal;
    }

    .notification-box .icon {
        width: 42px;
        height: 42px;
        background-color: #ff3b30;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .notification-box .shake-icon {
        animation: shake 0.5s ease-in-out infinite;
    }

.notification-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    color: #000;
}

.notification-body {
    font-size: 14px;
    color: #555;
}

.select2-container--default .select2-results__option--selected {
    background-color: #5897fb !important;
    color: white !important;
}

.select2-container {
    z-index: 9999 !important;
}

ion-icon {
    pointer-events: none;
}

.fab-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99998 !important;
}

.fab-disabled {
    opacity: 0;
    pointer-events: none;
}