.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
    border-top: 3px solid var(--cookie-main-color);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

#custom-cookie-banner .btn-primary,
#cookie-settings-modal .btn-primary {
    background-color: var(--cookie-main-color) !important;
    border-color: var(--cookie-main-color) !important;
    color: #fff !important;
}

#custom-cookie-banner .btn-primary:hover,
#cookie-settings-modal .btn-primary:hover {
    filter: brightness(85%);
    opacity: 1;
}

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

.cookie-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.cookie-close-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

.cookie-close-icon:hover {
    color: #000;
}

.cookie-option {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-buttons {
    margin-top: 20px;
    text-align: right;
}