/* Argon Dashboard Pro Notify Styles */
.alert-notify {
    position: relative;
    padding: 16px 20px;
    margin-bottom: 0;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 20px 27px 0 rgba(0, 0, 0, 0.05);
    z-index: 1050;
    max-width: 420px;
    min-width: 300px;
    font-family: "Open Sans", sans-serif;
    color: white;
}

.alert-notify .alert-icon {
    font-size: 18px;
    margin-right: 12px;
    vertical-align: middle;
    width: 20px;
    text-align: center;
}

.alert-notify .alert-text {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.5;
    flex: 1;
}

.alert-notify .alert-text strong {
    font-weight: 600;
    margin-right: 8px;
}

.alert-notify .btn-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: white;
    opacity: 0.8;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-notify .btn-close:hover {
    opacity: 1;
}

.alert-notify .btn-close:before {
    content: "×";
    font-size: 18px;
}

/* Success styling - Argon Green */
.alert-success.alert-notify {
    background: linear-gradient(87deg, #2dce89 0, #2dcecc 100%);
    color: white;
}

.alert-success.alert-notify .alert-icon {
    color: white;
}

/* Error styling - Argon Red */
.alert-danger.alert-notify {
    background: linear-gradient(87deg, #f5365c 0, #f56036 100%);
    color: white;
}

.alert-danger.alert-notify .alert-icon {
    color: white;
}

/* Warning styling - Argon Orange */
.alert-warning.alert-notify {
    background: linear-gradient(87deg, #fb6340 0, #fbb140 100%);
    color: white;
}

.alert-warning.alert-notify .alert-icon {
    color: white;
}

/* Info styling - Argon Blue */
.alert-info.alert-notify {
    background: linear-gradient(87deg, #11cdef 0, #1171ef 100%);
    color: white;
}

.alert-info.alert-notify .alert-icon {
    color: white;
}

/* Animate CSS classes for smooth entry/exit */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}

.animated.fadeInDown {
    animation: fadeInDown 0.6s ease-in-out;
}

.animated.fadeOutUp {
    animation: fadeOutUp 0.6s ease-in-out;
}

/* Notification positioning */
[data-notify-position="top-right"] {
    top: 20px !important;
    right: 20px !important;
}