.alert {
    font-family: 'Arial', sans-serif;
    width: 100%;
    background-color: #b00;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    padding: 1rem 0;
}

.new_alert {
    background-color: #13580e;
    transition: background-color 0.2s ease;
}

.new_alert:hover {
    background-color: #27580e;
    cursor: pointer;
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-btn {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #900;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
