<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Popup stil ayarlarÄ± */
.terms-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99999;
}

.terms-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    max-height: 70%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    padding-bottom: 0; /* Altta sabit butonlar iÃ§in boÅŸluk bÄ±rak */
}

.terms-popup .terms-content {
    max-height: calc(100% - 60px); /* Ä°Ã§eriÄŸin yÃ¼ksekliÄŸini dÃ¼ÄŸmelerin boyutuna gÃ¶re ayarlayÄ±n */
    overflow-y: auto;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.popup-buttons {
    position: sticky;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background: #fff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Hafif bir gÃ¶lge ekleyerek belirginleÅŸtirelim */
}

.popup-buttons button {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.multiple-terms-checkboxes p {
    display: flex;
    margin-bottom: 6px;
}

.accept-terms {
    text-transform: uppercase;
    background-color: #000;
    color: white;
    border: none;
}

.reject-terms {
    text-transform: uppercase;
    background-color: #f44336;
    color: white;
    border: none;
}

.close-terms-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000;
    text-decoration: none;
    font-size: 20px;
    cursor: pointer;
}
</pre></body></html>