#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 420px;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    font-family: Arial, sans-serif;
}

#cookie-banner h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

#cookie-banner p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.cookie-buttons button {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #2d63d6;
    background: transparent;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
}

.cookie-buttons .accept {
    background: #2d63d6;
    color: #fff;
}

.cookie-buttons .reject {
    color: #2d63d6;
}

.cookie-buttons .customize {
    color: #2d63d6;
}

/* MODAL */

#cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

#cookie-modal .modal-content {
    background: #fff;
    width: 600px;
    max-width: 90%;
    padding: 25px;
    border-radius: 8px;
}

.modal-header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.cookie-category {
    margin: 15px 0;
}

.cookie-category label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.modal-buttons button {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #2d63d6;
    background: transparent;
    cursor: pointer;
}

.modal-buttons .accept {
    background: #2d63d6;
    color: #fff;
}