/* Custom Alerts Style */
.alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    min-width: 300px;
    max-width: 500px;
    opacity: 0;
    transition: all 0.3s ease;
}

.alert.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.alert-content {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    border-right: 5px solid;
}

.alert-content p {
    margin: 0;
    padding-right: 20px;
    font-size: 14px;
}

.alert-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: all 0.3s ease;
}

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

/* Alert Types */
.alert-success .alert-content {
    border-right-color: var(--primary-green);
    color: var(--primary-green);
    background-color: rgba(69, 193, 131, 0.1);
}

.alert-error .alert-content {
    border-right-color: var(--primary-red);
    color: var(--primary-red);
    background-color: rgba(224, 60, 57, 0.1);
}

.alert-info .alert-content {
    border-right-color: var(--primary-blue);
    color: var(--primary-blue);
    background-color: rgba(34, 148, 176, 0.1);
}

/* Responsive Alerts */
@media (max-width: 576px) {
    .alert {
        width: 90%;
        min-width: auto;
    }
} 