
    body {
        margin: 0;
        font-family: 'Roboto', sans-serif;
        background: linear-gradient(135deg, #1e3c72, #2a5298, #ff9a5b, #ff6f47);
        color: #ffffff;
    }

    .container {
        display: flex;
        flex-direction: row;
        height: 100vh;
    }

    .left-panel, .right-panel {
        flex: 1;
        padding: 40px;
        overflow-y: auto;
    }

    .left-panel {
        background: linear-gradient(to bottom, #1e3c72, #2a5298);
        color: #ffffff;
        font-family: 'Roboto', sans-serif;
    }

    .right-panel {
        background: linear-gradient(to bottom, #ff9a5b, #ff6f47);
        color: #000000;
        font-family: 'Playfair Display', serif;
    }

    h2, h3, h4 {
        margin-top: 0;
    }

    pre {
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        color: #e0e0e0;
        font-size: 14px;
    }

    code {
        color: #ff6f47;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }

    th, td {
        border: 1px solid #ffffff;
        padding: 10px;
        text-align: left;
    }

    th {
        background: rgba(0, 0, 0, 0.2);
    }

    .button {
        background: linear-gradient(to right, #ff6f47, #ff9a5b);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), inset 0 -3px 5px rgba(255, 255, 255, 0.5);
        border-radius: 5px;
        padding: 10px 20px;
        font-weight: bold;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .button:hover {
        transform: translateY(-2px);
    }

    .fashion-image {
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    .fashion-image:hover {
        transform: scale(1.1);
        filter: brightness(1.2) saturate(1.5);
    }

    @media (max-width: 768px) {
        .container {
            flex-direction: column;
        }

        .left-panel, .right-panel {
            flex: none;
            height: auto;
            padding: 20px;
        }
    }

    .reference-note {
        position: fixed;
        bottom: 10px;
        right: 10px;
        background: rgba(0,0,0,0.5);
        color: #ffffff;
        padding: 5px 10px;
        border-radius: 3px;
        font-size: 12px;
    }

