#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#cookie-notice button {
    margin: 0 10px;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#accept-cookies {
    background-color: #0e52a9;
    color: white;
}

#save-cookie-settings {
    background-color: #0e52a9;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 10px;
    padding: 5px 10px;
}

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

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 70%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

#cookie-icon {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: transparent;
    color: #0e52a9;
    padding: 0;
    cursor: pointer;
    z-index: 1000;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

#cookie-icon:hover {
    transform: scale(1.1);
}

#cookie-icon svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.modal-content h2 {
    color: #000;
    font-size: 18px;
    margin-bottom: 10px;
}

.modal-content p {
    color: #333;
    font-size: 14px;
    margin-bottom: 15px;
}

.finzortech-analytics-block {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 15px;
}

.finzortech-analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.analytics-title {
    font-weight: bold;
}

.analytics-content {
    font-size: 12px;
}

.ui-switcher {
    display: inline-block;
    height: 20px;
    width: 40px;
    background: #898989;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.ui-switcher:after {
    content: '';
    height: 18px;
    width: 18px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 1px;
    top: 1px;
    transition: 0.3s;
}

.ui-switcher.active {
    background: #29813a;
}

.ui-switcher.active:after {
    left: 21px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        margin: 10% auto;
    }
    #cookie-notice {
        flex-direction: column;
    }
    #cookie-notice button {
        margin: 5px 0;
        width: 100%;
    }
}
