
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 300px;
    background: #fff;
    color: black;
    padding: 15px;
    font-size: 14px;
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: none;
}

.cookie-message p {
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.cookie-btn, .cookie-btn-secondary {
    padding: 6px 12px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 13px;
}

.cookie-btn {
    background-color: #65855f;
    color: white;
}

.cookie-btn-secondary {
    background-color: #6c757d;
    color: white;
}

/* Modal stays full screen */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.cookie-modal-content {
    background: white;
    color: black;
    margin: 10% auto;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
}

