/* สไตล์สำหรับแบนเนอร์คุกกี้ */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
}

/* ปุ่มคุกกี้ */
.cookie-btn {
    background: #f1c40f;
    color: black;
    font-weight: bold;
    border: none;
    padding: 12px 18px;
    margin: 8px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-btn:hover {
    background: #d4ac0d;
}

/* ปุ่มปฏิเสธ */
.cookie-btn.reject {
    background: #e74c3c;
    color: white;
}

.cookie-btn.reject:hover {
    background: #c0392b;
}

/* ปุ่มตั้งค่า */
.cookie-btn.settings {
    background: #3498db;
    color: white;
}

.cookie-btn.settings:hover {
    background: #2980b9;
}

/* หน้าต่างตั้งค่าคุกกี้ */
#cookie-settings {
    display: none;
    position: fixed;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    text-align: left;
}

#cookie-settings h3 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
}

#cookie-settings label {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 10px 0;
    cursor: pointer;
}

#cookie-settings input {
    margin-right: 10px;
}

/* ปุ่มบันทึกการตั้งค่า */
.cookie-btn.save {
    width: 100%;
    margin-top: 10px;
}
