.gradientContainer {
    display: flex;
    gap: 20px;
    margin: 0 auto;
    font-family: monospace;

    .preview-section,
    .controls-section {
        flex: 1;
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    h1 {
        color: #333;
        text-align: center;
        margin-bottom: 30px;
    }

    .preview-container {
        width: 100%;
        height: 250px;
        border-radius: 8px;
        margin-bottom: 20px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .stop-handler {
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: white;
        border: 2px solid #333;
        cursor: move;
        z-index: 10;
    }

    .stop-label {
        position: absolute;
        font-size: 12px;
        color: white;
        text-shadow: 1px 1px 2px black;
        pointer-events: none;
    }

    .controls-section h2 {
        margin-top: 0;
        color: #444;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .control-group {
        margin-bottom: 15px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-end;
        gap: 1rem;
    }

    label {
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
        color: #555;
    }

    input[type="text"] {
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    input[type="number"] {
        padding: 5px;
    }

    button {
        background-color: #bd0a61;
        color: white;
        border: none;
        padding: 6px 12px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
    }

    button:hover {
        background-color: #bd0a61;
    }

    .remove-btn {
        background-color: #d32f2f;
        padding: 3px 9px;
        margin-left: 4px;
        font-size: 21px;
    }

    .remove-btn:hover {
        background-color: #f44336;
    }

    .stops-list {
        margin-top: 15px;
    }

    .stop-item {
        display: flex;
        align-items: center;
        padding: 8px;
        border-bottom: 1px solid #eee;
    }

    .stop-color {
        width: 50px;
        height: 30px;
        border: 0px;
        margin-right: 10px;
        cursor: pointer;
        padding: 0px;
        background-color: transparent;
    }
}