.elementor-234423 .elementor-element.elementor-element-a73986f{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--padding-top:8rem;--padding-bottom:9rem;--padding-left:0rem;--padding-right:0rem;}.elementor-234423 .elementor-element.elementor-element-136227f{width:100%;max-width:100%;}@media(min-width:768px){.elementor-234423 .elementor-element.elementor-element-a73986f{--content-width:1479px;}}/* Start custom CSS */.color-picker-wrapper {
    max-width: 800px;
}

.color-header {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.color-header-sample {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.color-header-info {
    display: flex;
    gap: 20px;
}

.header-value {
    display: flex;
    gap: 10px;
}

.header-label {
    color: #666;
    font-weight: 500;
}

.picker-container {
    display: flex;
    gap: 20px;
    padding: 20px;
}
canvas#hueSlider {
    height: 547px;
}
.color-area {
  width: 400px;
    height: 300px;
    position: relative;
    cursor: crosshair;
}

.color-gradient {
   width: 100%;
    height: 547px;
    position: absolute;
    top: 0;
    left: 0;
}

.color-pointer {
    width: 10px;
    height: 10px;
    border: 2px solid white;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
}

.color-slider {
    width: 30px;
    height: 300px;
    position: relative;
}

.color-info-panel {
    background: white;
    padding: 15px;
    min-width: 200px;
}

.color-preview {
    width: 100%;
    height: 60px;
    margin-bottom: 15px;
}

.color-values {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 8px;
    color: #666;
}

.color-values label {
    font-weight: 500;
}

.color-values input {
    width: 93px;
    padding: 2px 5px;
    border: 1px solid #ddd;
    margin-left: 10px;
}

.color-section {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.color-section:last-child {
    border-bottom: none;
}
@media screen and (max-width: 768px) {
    .color-picker-wrapper {
        max-width: 100%;
        padding: 10px;
    }

    .color-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .color-header-info {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .picker-container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        gap: 30px;
    }

    .color-area {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }

    .color-gradient {
        width: 100%;
        height: 300px;
    }

    .color-slider {
        width: 100%;
        height: 30px;
        max-width: 400px;
    }

    canvas#hueSlider {
        width: 100%;
        height: 30px;
    }

    .color-info-panel {
        width: 100%;
        max-width: 400px;
        padding: 10px;
    }

    .color-values input {
        width: 100%;
        max-width: 120px;
    }
}

@media screen and (max-width: 480px) {
    .color-header-info {
        font-size: 14px;
    }

    .color-area {
        height: 250px;
    }

    .color-gradient {
        height: 250px;
    }

    .color-preview {
        height: 40px;
    }

    .color-values {
        gap: 5px;
    }

    .color-values input {
        max-width: 80px;
    }
}/* End custom CSS */