﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #1f2937;
    color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    display: none;
    z-index: 9999;
}

    .cookie-banner h3 {
        margin-top: 0;
        font-size: 20px;
    }

    .cookie-banner p {
        margin-bottom: 15px;
        line-height: 1.5;
    }

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .cookie-buttons button {
        border: none;
        padding: 12px 18px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: bold;
        transition: 0.3s;
    }

.accept {
    background: #10b981;
    color: white;
}

    .accept:hover {
        background: #059669;
    }

.reject {
    background: #ef4444;
    color: white;
}

    .reject:hover {
        background: #dc2626;
    }

.manage {
    background: #3b82f6;
    color: white;
}

    .manage:hover {
        background: #2563eb;
    }

.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.cookie-modal-content {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
}

.cookie-option {
    margin: 15px 0;
}

    .cookie-option label {
        margin-left: 10px;
    }

.save-btn {
    margin-top: 20px;
    width: 100%;
    background: #111827;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

    .save-btn:hover {
        background: #000;
    }
