/* Disclaimer Modal Styles */
.disclaimer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none; /* JavaScript ile kontrol edilecek */
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-in-out;
}

.disclaimer-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.disclaimer-title {
    color: #e74c3c;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.disclaimer-checkbox-container {
    margin-bottom: 20px;
}

.disclaimer-checkbox {
    margin-right: 10px;
}

.disclaimer-label {
    font-size: 0.9rem;
    color: #666;
}

.disclaimer-button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.disclaimer-button:disabled {
    background-color: #bdc3c7;
    opacity: 0.6;
    cursor: not-allowed;
}

.disclaimer-button:not(:disabled) {
    cursor: pointer;
}

.disclaimer-button:not(:disabled):hover {
    background-color: #2980b9;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
