.custom-input,
.custom-select {
    width: 100%;
    padding: 5px;
    border: 1.2px solid #ccc; /* 1.5px * 0.8 */
    background-color: #f9f9f9;
    transition: all 0.3s ease-in-out;
    font-size: 12px;
    border-radius: 5px; /* 5px * 0.8 */
}

.custom-select:hover,
.custom-input:hover {
    border-color: #007bff;
}

.custom-select:focus,
.custom-input:focus {
    border-color: #007bff;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.64); /* 6px * 0.8 */
}

.custom-select {
    appearance: none;
    cursor: pointer;
    border-radius: 5px; /* 5px * 0.8 */
}


.custom-color-input {
    width: 300px;
    height: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 0;
    background: transparent;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease-in-out;
}
.custom-date-input {
    padding: 5px;
    border: 1.2px solid #ccc;
    background-color: #f9f9f9;
    transition: all 0.3s ease-in-out;
    font-size: 12px;
    border-radius: 5px;
}

.custom-date-input:hover {
    border-color: #007bff;
}

.custom-date-input:focus {
    border-color: #007bff;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.64);
}