/* PREMIUM NOTY THEME */

.noty_bar.noty_theme_default {
    background-color: #ffffff;
    border-radius: 8px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    border: none !important;
    overflow: hidden;
    margin-bottom: 12px !important;
}

.noty_custom_container.noty_theme_default.noty_layout_inline {
    position: relative;
}

.noty_custom_container.noty_theme_default.noty_layout_inline .noty_cont.noty_layout_inline {
    position: static;
}

.noty_custom_container.noty_theme_default.noty_layout_inline .noty_bar {
    position: static;
    border-radius: 8px;
}

.noty_custom_container.noty_theme_default.noty_layout_inline .noty_bar .noty_message {
    font-size: 14px;
    padding: 12px 16px;
}

/* Base message style */
.noty_bar.noty_theme_default .noty_message {
    padding: 14px 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    width: auto;
    display: flex;
    align-items: center;
    color: #1f2937;
    text-shadow: none !important;
}

.noty_bar.noty_theme_default.noty_closable .noty_message {
    padding: 14px 40px 14px 20px !important;
}

/* Close button - sleek cross */
.noty_bar.noty_theme_default .noty_close {
    position: absolute;
    top: 50% !important;
    right: 15px !important;
    transform: translateY(-50%);
    width: 20px !important;
    height: 20px !important;
    background: transparent !important;
    cursor: pointer;
    opacity: 0.5 !important;
    transition: opacity 0.2s;
}
.noty_bar.noty_theme_default .noty_close:before,
.noty_bar.noty_theme_default .noty_close:after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: currentColor;
    top: 50%;
    left: 50%;
}
.noty_bar.noty_theme_default .noty_close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.noty_bar.noty_theme_default .noty_close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.noty_bar.noty_theme_default .noty_close:hover {
    opacity: 1 !important;
}

/* Modal overlay */
.noty_modal.noty_theme_default {
    background-color: #000;
    opacity: 0.4 !important;
}

/* TYPES */
/* Default / Alert */
.noty_bar.noty_theme_default.noty_alert {
    background-color: #ffffff !important;
    border-left: 5px solid #6b7280 !important;
}

/* Error */
.noty_bar.noty_theme_default.noty_error {
    background-color: #fef2f2 !important;
    border: 1px solid #fee2e2 !important;
    border-left: 5px solid #ef4444 !important;
}
.noty_bar.noty_theme_default.noty_error .noty_message {
    color: #991b1b !important;
}

/* Success */
.noty_bar.noty_theme_default.noty_success {
    background-color: #f0fdf4 !important;
    border: 1px solid #dcfce7 !important;
    border-left: 5px solid #22c55e !important;
}
.noty_bar.noty_theme_default.noty_success .noty_message {
    color: #166534 !important;
}

/* Information */
.noty_bar.noty_theme_default.noty_information {
    background-color: #eff6ff !important;
    border: 1px solid #dbeafe !important;
    border-left: 5px solid #3b82f6 !important;
}
.noty_bar.noty_theme_default.noty_information .noty_message {
    color: #1e40af !important;
}

/* Warning */
.noty_bar.noty_theme_default.noty_warning {
    background-color: #fffbeb !important;
    border: 1px solid #fef3c7 !important;
    border-left: 5px solid #f59e0b !important;
}
.noty_bar.noty_theme_default.noty_warning .noty_message {
    color: #b45309 !important;
}

/* Layout overrides */
.noty_bar.noty_theme_default.noty_layout_top,
.noty_bar.noty_theme_default.noty_layout_bottom {
    border-radius: 0 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
}