/* Custom Noty Toast Styles */
.noty_theme__custom {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 12px 20px;
    margin-bottom: 5px;

}

/* Success toast */
.noty_theme__custom.noty_type__success {
    background-color: #4CAF50;
    color: white;
}

/* Error toast */
.noty_theme__custom.noty_type__error {
    background-color: #f44336;
    color: white;
}

/* Warning toast */
.noty_theme__custom.noty_type__warning {
    background-color: #ff9800;
    color: white;
}

/* Info toast */
.noty_theme__custom.noty_type__info {
    background-color: #2196F3;
    color: white;
}

/* Toast body text */
.noty_theme__custom .noty_body {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    padding: 0;
}

/* Progress bar */
.noty_theme__custom .noty_progressbar {
    background-color: rgba(255, 255, 255, 0.3);
    height: 3px;
}

/* Close button */
.noty_theme__custom .noty_close {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    font-weight: bold;
    padding: 0 0 0 10px;
    transition: color 0.2s ease;
}

.noty_theme__custom .noty_close:hover {
    color: #ffffff;
}

/* Layout specific styles */
.noty_layout__topRight {
    top: 20px;
    right: 20px;
}

.noty_layout__topLeft {
    top: 20px;
    left: 20px;
}

.noty_layout__topCenter {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}



@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .noty_theme__custom {
        margin: 10px;
        width: calc(100% - 20px);
    }
    
    .noty_layout__topRight,
    .noty_layout__topLeft,
    .noty_layout__topCenter {
        top: 10px;
    }
} 