
    .icl-container {
        display: flex;
        gap: 20px;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    .icl-left, .icl-right {
        flex: 1;
        min-width: 300px;
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .icl-right {
        background: #f9f9f9;
    }
    .icl-preset {
        padding: 6px 14px;
        border: 1px solid #ccc;
        border-radius: 4px;
        background: #f7f7f7;
        cursor: pointer;
        margin-right: 6px;
        transition: 0.2s;
    }
    .icl-preset:hover {
        background: #0073aa;
        color: #fff;
    }
    .icl-preset.active {
        background: #005177;
        color: #fff;
        border-color: #004466;
    }
    @media (max-width: 768px) {
        .icl-container { flex-direction: column; }
    }
    