#cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 15px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 9999; /* Tüm katmanların üstünde */
}
#cookie-popup button {
    margin: 10px;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
}
.accept-btn {
    background-color: #172b3d;
    color: white;
}
.reject-btn {
    background-color: #f25100;
    color: white;
}
.close-btn {
    background-color: #6c757d;
    color: white;
}