.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Темный фон с прозрачностью */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: rgba(58, 54, 54, 0.889); /* Полупрозрачный черный фон */
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    color: white;
    box-shadow: 0 0 20px rgba(79, 77, 77, 0.737);
    text-align: center;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.modal-title {
    color: white;
    margin-bottom: 20px;
}

.order-service-form input,
.order-service-form textarea,
.order-service-form select {
    width: calc(100% - 20px); /* Учитываем отступы */
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555; /* Более темная рамка */
    font-size: 16px;
    background-color: rgba(27, 26, 26, 0.962); /* Полупрозрачный черный фон для полей ввода */
    color: white;
    box-sizing: border-box;
}

.order-service-form input::placeholder,
.order-service-form textarea::placeholder {
    color: #aaa; /* Светло-серый для плейсхолдера */
}

.order-service-form button {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background-color: #FF0D1E; /* Красный фон для кнопки */
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.order-service-form button:hover {
    background-color: #cc0b18; /* Более темный красный при наведении */
}

.status-message {
    margin-top: 10px;
    font-size: 16px;
    color: #FF0D1E; /* Красный цвет для статуса */
}

