/* Modal backdrop */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Modal content box */
.cookie-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    direction: rtl;
    text-align: right;
    color: black;
}

/* Close button */
.cookie-close {
    float: left;
    font-size: 28px;
    cursor: pointer;
}

/* Tabs */
.cookie-tabs {
    list-style: none;
    padding: 0;
    margin: 20px 0 10px;
    display: flex;
    justify-content: space-between;
}

.cookie-tabs .tab {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.cookie-tabs .tab.active {
    border-bottom: 2px solid var(--primary-color);
    font-weight: bold;
}

/* Tab content panes */
.tab-pane {
    display: block;
}

.tab-pane.hide {
    display: none;
}

/* Actions buttons */
.cookie-actions {
    margin-top: 20px;
    text-align: center;
}

.cookie-actions button {
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.cookie-actions button:hover {
    /* background-color: darken(var(--primary-color), 10%); */
}

.edit-cookies-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 9999;
    transition: background 0.3s, transform 0.3s;
}

.edit-cookies-btn:hover {
    /* background: darken(var(--primary-color), 10%); */
    transform: scale(1.1);
}

.edit-cookies-btn i {
    font-size: 20px;
    line-height: 1;
}
/* ========================================= */