/* Genel stil */
#cookie-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    margin: auto;
    background: linear-gradient(135deg, #ffffffee, #f1f1f1ee);
    color: #333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease-in-out;
    display: none;
}

/* Responsive görünüm */
@media (max-width: 480px) {
    #cookie-notification {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 16px;
    }

    #cookie-notification p {
        font-size: 12px !important;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-buttons button {
        width: 100%;
    }
}

/* Açıklama metni */
#cookie-notification p {
    font-size: 13px;
    margin: 0 0 12px;
    color: #333;
    line-height: 1.5;
}

/* Link */
#cookie-notification .aaaa {
    color: #0077cc;
    text-decoration: underline;
    font-weight: 500;
}

#cookie-notification .aaaa:hover {
    color: #005fa3;
}

/* Butonlar */
.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s ease-in-out;
}

#accept-cookies-btn {
    background-color: #4caf50;
    color: white;
}

#accept-cookies-btn:hover {
    background-color: #43a047;
}

#reject-cookies-btn {
    background-color: #f44336;
    color: white;
}

#reject-cookies-btn:hover {
    background-color: #e53935;
}
