button.single_add_to_cart_button.disabled,
button.single_add_to_cart_button:disabled {
    background-color: #ccc !important;
    cursor: not-allowed !important;
    border-color: #aaa !important;
    color: #666 !important;
}

.dtf_custom_fields{
    width: 100%;
}

body.dtf-custom-fields-enabled .quantity.buttons_added {
    display: none !important;
}

/* General form styling */
.dtf_custom_fields {
    margin-bottom: 20px;
}

.dtf_custom_fields label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.dtf_custom_fields select,
.dtf_custom_fields input[type="text"],
.dtf_custom_fields input[type="number"],
.dtf_custom_fields textarea {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 16px;
    height: 45px;
}

/* Specific adjustments for height and width */
#order_comment {
    height: 100px; /* Adjust height to fit larger comments */
}

#logo_width,
#logo_height,
#logo_quantity {
    max-width: 100px; /* Adjust width for smaller numeric inputs */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dtf_custom_fields select,
    .dtf_custom_fields input[type="text"],
    .dtf_custom_fields input[type="number"],
    .dtf_custom_fields textarea {
        max-width: 100%;
    }
}