/*
CTC Separate Stylesheet
Updated: 2025-04-18 18:07:58
*/
/* Hide the material options by default */
#material-options {
    display: none; /* Hidden initially */
    margin-bottom: 20px; /* Space between material options and variations */
}

/* Style the radio buttons and images */
#material-options label {
    display: inline-block;
    margin-right: 15px;
    margin-top: 10px;
    text-align: center; /* Center text (labels) under images */
}

#material-options img {
    width: 100px; /* Adjust the size of the material images */
    height: 100px; /* Adjust the height of the material images */
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* On hover, slightly zoom the image */
#material-options img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Add a price hint below each image */
#material-options .wapf-pricing-hint {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

/* Optionally: You can also add a hover effect on the label */
#material-options label:hover {
    cursor: pointer; /* Make it clear it's clickable */
}

/* Adjust spacing between images if needed */
#material-options label {
    margin-right: 20px; /* Increase space between options */
}

