#elektron-cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 18px 22px;

    background: rgba(10, 25, 34, 0.97);
    border: 1px solid rgba(25, 195, 125, 0.45);
    border-radius: 16px;

    color: #ffffff;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
}

#elektron-cookie-consent .evc-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#elektron-cookie-consent .evc-text strong {
    color: #c6e512;
    font-size: 16px;
}

#elektron-cookie-consent .evc-text span {
    color: #b7c4cc;
    font-size: 14px;
    line-height: 1.5;
}

#elektron-cookie-consent .evc-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

#elektron-cookie-consent .evc-actions button {
    border: none;
    border-radius: 10px;
    padding: 11px 20px;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}

#elektron-cookie-consent .evc-reject {
    background: #263740;
    color: #ffffff;
}

#elektron-cookie-consent .evc-accept {
    background: #c6e512;
    color: #07141b;
}

@media (max-width: 700px) {
    #elektron-cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;

        flex-direction: column;
        align-items: stretch;
    }

    #elektron-cookie-consent .evc-actions {
        width: 100%;
    }

    #elektron-cookie-consent .evc-actions button {
        flex: 1;
    }
}