/* Mint Color Picker Styles */
.color-picker-launcher {
    width: 80px;
    height: 100%;
    padding: 0;
    border: 1px solid #ced4da;
    border-left: none; /* remove inner border with input */
    border-radius: 0.375rem 0 0 0.375rem; /* rounded left corners (RTL) */
    background-color: #fff;
    cursor: pointer;
}

.pickr {
    width: 80px;
    border-radius: 0 0.375rem 0.375rem 0; /* rounded rigth corners (RTL) */
}

    .pickr .pcr-button {
        width: 100% !important;
        height: 100% !important;
        border: 1px solid #ccc; /* visible border for white */
        box-sizing: border-box;
        border-radius: inherit;
    }

.pcr-button:focus {
    outline: none;
    box-shadow: none;
}

/* Additional Pickr theme customizations can be added here as needed */

/* Responsive adjustments */
@media (max-width: 768px) {
    .color-picker-launcher {
        width: 60px;
    }
    
    .pickr {
        width: 60px;
    }
}
