/* Existing styles... */

.color-box {
    background-color: #f0f0f0;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    position: relative;
    box-sizing: border-box;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.product-info {
    flex-grow: 1;
    font-size: 16px;
    font-weight: bold;
}

.control-buttons {
    display: flex;
    align-items: center;
}

.control-buttons button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 12px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
}

.control-buttons button:first-child {
    background-color: #f44336;
}

.control-buttons .number {
    font-size: 18px;
    font-weight: bold;
    margin: 0 10px;
}

.warning {
    background-color: #f2dc85;
    color: #333;
    padding: 5px;
    margin: 5px 0;
    font-size: 0.9em;
    border-radius: 4px;
}

.comment-input, .custom-comment-input {
    width: 100%;
    margin-top: 10px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-info {
        margin-bottom: 10px;
    }

    .control-buttons {
        width: 100%;
        justify-content: space-between;
    }
}