
.color-box-container {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    margin-bottom: 20px;
    width: 48% !important;
    position: relative;
    margin-top: -96px;
}
.variations_form {
    position: relative;
    margin-top: 25px !important;
}
.color-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.color-rectangles-vertical {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 15px;
}

.color-vertical-box {
    display: flex;
    padding: 4px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    align-items: center;
}

.color-vertical-box:hover,
.color-vertical-box.selected {
    border-color: #0071a1;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.color-content {
    display: flex;
    flex-direction: row; /* Keep image and details aligned horizontally */
    align-items: center;
    width: 100%;
}

.color-image img {
    max-width: 80px;
    height: auto;
    margin-right: 15px; /* Space between image and details */
}

.color-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.color-name {
    font-size: 17px;
    font-weight: bold;
    color: #333;
    margin-bottom: 0;
    text-transform: capitalize;
}
.color-description {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.2;
}


