/* Dream Alert Styles */

.dream-alert {
    position: fixed;
    padding: 15px 20px;
    margin: 10px;
    border-radius: 5px;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    line-height: 1.5;
    max-width: 400px;
    animation: slideIn 0.3s ease;
}

.dream-alert.dream-success {
    background-color: #28a745;
}

.dream-alert.dream-info {
    background-color: #17a2b8;
}

.dream-alert.dream-warning {
    background-color: #ffc107;
    color: #333;
}

.dream-alert.dream-error,
.dream-alert.dream-danger {
    background-color: #dc3545;
}

© animation

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

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@media (max-width: 568px) {
    .dream-alert {
        max-width: 90vw;
        left: 5vw !important;
        right: auto !important;
        top: 10px !important;
        margin: 0;
    }
}
