.warning-modal {
    display: none;
    position: fixed;
    padding-top: 45px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: start;
    z-index: 200;
}

.warning-content {
    background: white;
    width: 500px;
    max-width: 90vw;
    padding: 10px 0 25px 0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease-in-out;
}
.warning-text{
    font-size: 20px;
    font-weight: lighter;
    margin-bottom: 25px;
}
.icon-container.success::before {
    content: '\2714';
    text-align: start;
    font-size: 100px;
    color: green;
}

.icon-container.error::before {
    content: '\26A0';
    text-align: start;
    font-size: 100px;
    color: red;
}

#warningCloseBtn {
    padding: 10px 20px;
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#warningCloseBtn:hover {
    background-color: #fd4343;
}

@keyframes slideDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100px);
        opacity: 0;
    }
}