.cookie-consent-ledgerlytic {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0b1f3d;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 999999;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.4);
}

.cookie-consent-ledgerlytic .cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    /* FIXED */
}

.cookie-consent-ledgerlytic p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-consent-ledgerlytic .cookie-link {
    color: #4dd0e1;
    text-decoration: underline;
}

.cookie-consent-ledgerlytic .cookie-buttons {
    margin-top: 10px;
    flex: 0 0 auto;
}

.cookie-consent-ledgerlytic .btn-accept,
.cookie-consent-ledgerlytic .btn-reject {
    border: none;
    padding: 10px 18px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.cookie-consent-ledgerlytic .btn-accept {
    background: #4dd0e1;
    color: #0b1f3d;
}

.cookie-consent-ledgerlytic .btn-reject {
    background: #ffffff;
    color: #0b1f3d;
}

.cookie-consent-ledgerlytic {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-consent-ledgerlytic.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .cookie-consent-ledgerlytic .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-ledgerlytic .cookie-buttons {
        margin-top: 15px;
        text-align: right;
    }
}