/* Custom Notyf Styles */
.notyf {
    z-index: 99999 !important;
    /* Ensure it's above everything */
}

.notyf__toast {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
    border-radius: 8px !important;
    padding: 0 !important;
    max-width: 450px !important;
    font-family: inherit !important;
    overflow: hidden;
    background-color: #ffffff !important;
    color: #333333 !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.notyf__wrapper {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.notyf__icon {
    margin-right: 12px !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    /* Ensure it doesn't shrink */
    font-size: 20px !important;
    /* Slightly larger for visibility */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    flex-shrink: 0 !important;
}

.notyf__icon i {
    font-size: inherit;
    line-height: 1;
    display: block;
}

/* Icon Colors */
.notyf__icon--success,
.notyf__toast--success .notyf__icon {
    color: #28a745 !important;
}

.notyf__icon--error,
.notyf__toast--error .notyf__icon {
    color: #dc3545 !important;
}

.notyf__icon--warning,
.notyf__toast--warning .notyf__icon {
    color: #ffc107 !important;
}

.notyf__icon--info,
.notyf__toast--info .notyf__icon {
    color: #17a2b8 !important;
}

.notyf__message {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #333;
}

/* Colored Bottom Borders for Types */
.notyf__toast--success {
    border-bottom: 3px solid #28a745 !important;
}

.notyf__toast--error {
    border-bottom: 3px solid #dc3545 !important;
}

.notyf__toast--warning {
    border-bottom: 3px solid #ffc107 !important;
}

.notyf__toast--info {
    border-bottom: 3px solid #17a2b8 !important;
}

/* Ripple Effect */
.notyf__ripple {
    display: none !important;
    /* Cleaner without ripple on white card */
}

/* Dismiss Button */
.notyf__dismiss {
    margin-left: 10px;
}

.notyf__dismiss-btn {
    background-color: transparent !important;
    opacity: 0.4;
    transform: scale(0.8);
    transition: opacity 0.2s;
}

.notyf__dismiss-btn:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.05) !important;
}