.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffffd5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: fadeIn 0.3s;
}

.close-btn {
    color: #969696;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #333;
    text-decoration: none;
}

#orderForm label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    text-align: left;
    font-weight: bold;
}

#orderForm input[type="text"],
#orderForm input[type="tel"],
#orderForm textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; 
    background-color: #ffffff70;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #b40404;
    color: white;
    border: none;
    border-radius: 5px;
    transition: 0.2s;
}

.submit-btn:hover{
    background-color: #740707;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}