.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.cookie-modal.cookie-hidden {
    display: none;
}

.cookie-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 540px;
    overflow: hidden;
    font-family: sans-serif;
}

.cookie-header {
    background: #198754;
    color: white;
    padding: 16px 24px;
    font-size: 1.25rem;
    font-weight: bold;
}

.cookie-body {
    padding: 20px 24px;
    font-size: 14px;
    color: #333;
}

.cookie-option {
    margin-top: 12px;
    display: flex;
    align-items: center;
}

.cookie-option input[type="checkbox"] {
    margin-right: 10px;
}

.cookie-footer {
    background: #f6f6f6;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: 0.2s ease-in-out;
}

.cookie-btn-primary {
    background-color: #198754;
    color: white;
}

.cookie-btn-primary:hover {
    background-color: #157347;
}

.cookie-btn-secondary {
    background-color: #e4e4e4;
    color: #333;
}

.cookie-btn-secondary:hover {
    background-color: #d1d1d1;
}

.cookie-floating-button {
    position: fixed;
    right: 16px;
    bottom: 130px;
    z-index: 9999;
}

.cookie-floating-button button {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
