#ave-cookie-banner{

}

.ave-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 15;
    font-family: "Montserrat", sans-serif;
    display: none;
}

.ave-content {
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.ave-text {
    font-size: 14px;
    line-height: 1.5;
    color: #4a4a4a;
    flex: 1;
}

.ave-link {
    color: #2563eb;
    text-decoration: underline;
    white-space: nowrap;
}
.ave-text a{
    color:#4a4a4a;
}
.ave-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.ave-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.ave-btn-accept {
    background: #2563eb;
    color: white;
}

.ave-btn-accept:hover {
    background: #1d4ed8;
}

.ave-btn-reject {
    background: white;
    color: #4a4a4a;
    border-color: #d1d5db;
}

.ave-btn-reject:hover {
    background: #f3f4f6;
}

#ave-settings {
    /*background: #f8fafc;*/
    /*border-top: 1px solid #e2e8f0;*/
    max-height: 0;
    /*overflow: auto;*/
    transition: max-height 0.3s ease-out;
}

#ave-settings.active {
    max-height: 500px;
}

.ave-categories {
    padding: 16px 24px;
    /*max-width: 1200px;*/
    margin: 0 auto;
    max-height: 400px;
    overflow-y: auto;
}

.ave-category {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 12px 0;
    /*border-bottom: 1px solid #e2e8f0;*/
    border:none;
}

.ave-category:last-child {
    border-bottom: none;
}

.ave-checkbox {
    display: flex;
    gap: 8px;
    cursor: pointer;
    align-items: center;
}
.ave-checkbox input[type="checkbox"]{
    display: none;
}
.ave-checkmark {
    position: relative;
    top: -1px;
    width: 18px;
    height: 18px;
    border: 2px solid #94a3b8;
    border-radius: 4px;
    transition: all 0.2s;
}

.ave-checkbox input:checked ~ .ave-checkmark {
    background: #2563eb;
    border-color: #2563eb;
}

.ave-checkbox input:checked ~ .ave-checkmark:after{
    content: '\2713';
    position: absolute;
    color: white;
    left: 50%;
    top: 50%;
    font-size: 13px;
    transform: translate(-50%, -50%);
}

.ave-checkbox input:disabled ~ .ave-checkmark {
    background: #2563eb;
    border-color: #2563eb;
    cursor: not-allowed;
}

.ave-category-title {
    font-weight: 500;
    color: #1e293b;
    font-size: 15px;
}

.ave-category-desc {
    font-size: 13px;
    color: #505d68;
    line-height: 1.4;
    display: block;
    width: 100%;
}

.ave-category-desc p{
    margin: 0;
}

.ave-settings-buttons {
    padding: 16px 24px;
    background: #ffffff;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.05);
    text-align: right;
}

.ave-btn-settings {
    background: none;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.ave-btn-settings:hover {
    background: #eff6ff;
}

.ave-btn-save {
    padding: 8px 24px;
    background: #2563eb;
    color: white;
}

.ave-btn-cancel {
    background: none;
    color: #505d68;
    border: 1px solid #94a3b8;
}

.ave-btn-cancel:hover {
    background: #f1f5f9;
}
.ave-suboptions{
    display: none;
    flex-direction: column;
}
.ave-category-desc.active .ave-suboptions{
    display:flex;
}
.ave-suboptions-box{
    padding: 10px;
    border-left: 2px solid #2563eb;
    margin: 10px 0;
    gap: 5px;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
}

.ave-suboptions-item{
    display: flex;

}

.ave-suboptions-item-header{
    font-weight: 600;
    max-width: 160px;
    width: 100%;
}
#ave-settings-float{
    position: fixed;
    width: 50px;
    height: 50px;
    background: url(cookieTracker.png);
    z-index: 10;
    bottom: 5%;
    left: 1%;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    background-repeat: no-repeat;
    background-size: contain;
}
@media (max-width: 768px) {
    .ave-content {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .ave-buttons {
        width: 100%;
        justify-content: center;
    }

    .ave-link {
        white-space: normal;
    }

    .ave-category {

    }

    .ave-settings-buttons {
        text-align: center;
    }
}