
.serviceRequestModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    direction: rtl;
}

.service-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}


.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    direction: rtl;
}

.success-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.success-content img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.success-content h3 {
    color: #333;
    margin: 10px 0;
    font-size: 20px;
}

.success-content p {
    color: #666;
    margin: 10px 0 20px;
    font-size: 16px;
}

.success-content button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.success-content button:hover {
    background: #45a049;
}


#serviceForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#serviceForm input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.service-submit-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 24px;
}