.weather-alert-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.weather-alert-content {
    background: white;
    padding: 20px;
    border-radius: 5px;
    background-image: linear-gradient(#ff8a00, #e52e71);
    box-shadow: 0 0 15px hsla(0deg, 0%, 0%, 0.5);
    text-shadow: 0 2px 3px hsla(0deg, 0%, 0%, 0.25);
    font-size: 16px;
    text-align: center;
    max-width: 90%;
    width: 400px;
}

.weather-alert-content h1,
.weather-alert-content .weatherAlertDate{
    color: #fff;
    margin: 10px 0;
    font-weight: 600;
}

.weather-alert-button {
    background-color: #298a20;
    color: white;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 15px;
}

.weather-alert-button:hover {
    background-color: #21711a;
    color: white;
}
