.cerez-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.cerez-modal-content {
    background-color: #F5F5F5;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cerez-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #007782;
}

.cerez-modal-content h2 {
    color: #007782;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 15px;
}

.cerez-modal-content p {
    font-family: 'Inter', sans-serif;
    color: #333;
    margin-bottom: 20px;
}

.cerez-modal-content a {
    color: #007782;
    text-decoration: underline;
}

.cerez-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cerez-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cerez-kabul {
    background-color: #007782;
    color: white;
}

.cerez-kabul:hover {
    background-color: #005f66;
}

.cerez-reddet {
    background-color: #E6F0FA;
    color: #007782;
}

.cerez-reddet:hover {
    background-color: #d1e3f5;
}