#serviceSelectionModal.modal-content {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    color: black;
    line-height: 1.6;
    text-align: justify;
    animation: modalOpenClose 0.3s ease; /* Modal açılıp kapanma animasyonu */
}

#serviceSelectionModal.modal-header {
    background-color: #ab8f5a;
    color: white;
}

#serviceSelectionModal.modal-footer {
    padding: 1rem;
}

#serviceSelectionModal.modal-title {
    font-weight: bold;
}

#serviceSelectionModal.modal-open-animation {
    animation: modalOpenClose 0.3s ease;
}

#serviceSelectionModal.modal-close-animation {
    animation: modalOpenCloseReverse 0.3s ease;
}

@keyframes modalOpenClose {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes modalOpenCloseReverse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}
