.fileSelect{
    display: flex;
    flex-wrap: wrap;
    height: 100px;
    justify-content: center;
    align-content: center;
    border:dashed #dee2e6;
    font-size: 20px;
    cursor: pointer;
}
table#availableColors{
    background-image: url("dimension.png");
    border-spacing: 1px;
}

table#availableColors tr:nth-child(odd){
    border-top: gray 2px solid;
}

table#availableColors td:first-child{
    background: white;
    text-align: right;
}
table#availableColors td{
    border: solid 1px darkgray;
    text-align: center;
    padding: 5px;
}
.infoPopupABS{
    display: none;
    background-color: black;
    width: 25%;
    border-radius: 12px;
    color: white;
    padding: 10px 15px;
    position: absolute;
    left: 320px;
    opacity: 0.8;

}
.infoPopupPLA{
    display: none;
    background-color: black;
    width: 25%;
    border-radius: 12px;
    color: white;
    padding: 10px 15px;
    position: absolute;
    left: 320px;
    opacity: 0.8;

}
.infoPopupPETG{
    display: none;
    background-color: black;
    width: 25%;
    border-radius: 12px;
    color: white;
    padding: 10px 15px;
    position: absolute;
    left: 320px;
    opacity: 0.8;

}
.infoPopupASA{
    display: none;
    background-color: black;
    width: 25%;
    border-radius: 12px;
    color: white;
    padding: 10px 15px;
    position: absolute;
    left: 320px;
    opacity: 0.8;

}
.infoPopupTPU{
    display: none;
    background-color: black;
    width: 25%;
    border-radius: 12px;
    color: white;
    padding: 10px 15px;
    position: absolute;
    left: 320px;
    opacity: 0.8;

}
.infoPopupPPA-CF{
    display: none;
    background-color: black;
    width: 25%;
    border-radius: 12px;
    color: white;
    padding: 10px 15px;
    position: absolute;
    left: 320px;
    opacity: 0.8;

}
.infoPopupPC{
    display: none;
    background-color: black;
    width: 25%;
    border-radius: 12px;
    color: white;
    padding: 10px 15px;
    position: absolute;
    left: 320px;
    opacity: 0.8;
}

.infoPopupNylon{
    display: none;
    background-color: black;
    width: 25%;
    border-radius: 12px;
    color: white;
    padding: 10px 15px;
    position: absolute;
    left: 320px;
    opacity: 0.8;
}

.infoPopupLayWood{
    display: none;
    background-color: black;
    width: 25%;
    border-radius: 12px;
    color: white;
    padding: 10px 15px;
    position: absolute;
    left: 320px;
    opacity: 0.8;
}
.infoPopupBendLAY{
    display: none;
    background-color: black;
    width: 25%;
    border-radius: 12px;
    color: white;
    padding: 10px 15px;
    position: absolute;
    left: 320px;
    opacity: 0.8;
}
.infoPopupHIPS{
    display: none;
    background-color: black;
    width: 25%;
    border-radius: 12px;
    color: white;
    padding: 10px 15px;
    position: absolute;
    left: 320px;
    opacity: 0.8;
}

.infoABS:hover + .infoPopupABS{
    display: block!important;
}
.infoPLA:hover + .infoPopupPLA{
    display: block!important;
}
.infoPETG:hover + .infoPopupPETG{
    display: block!important;
}
.infoASA:hover + .infoPopupASA{
    display: block!important;
}
.infoTPU:hover + .infoPopupTPU{
    display: block!important;
}
.infoPPA-CF:hover + .infoPopupPPA-CF{
    display: block!important;
}
.infoPC:hover + .infoPopupPC{
    display: block!important;
}
.infoNylon:hover + .infoPopupNylon{
    display: block!important;
}
.infoLayWood:hover + .infoPopupLayWood{
    display: block!important;
}
.infoBendLAY:hover + .infoPopupBendLAY{
    display: block!important;
}
.infoHIPS:hover + .infoPopupHIPS{
    display: block!important;
}
.info-container {
    position: relative;
    display: inline-block;
}

#info-button {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.info-popup {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    width: 270px;
    top: -3%;
    left: -234px;
    z-index: 1;
}
.info-container:hover .info-popup {
    display: block;
}
#overlay{
    position: fixed;
    top: 0;
    z-index: 6000;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 20.8s infinite linear;
}
@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}
.is-hide{
    display:none;
}
.row{
    margin-right: 0;
    margin-left: 0;
}

/* Loading content */
/* Full-screen overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* Light overlay */
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's on top */
}

/* Spinning wheel */
.spinner {
    width: 250px;
    height: 250px;
    border: 10px solid rgba(0, 0, 0, 0.1);
    border-top: 10px solid #ff9900; /* Orange accent */
    border-radius: 50%;
    animation: spin 0.5s linear infinite; /* Fast spin */
}
/* Loading text */
.loading-text {
    margin-top: 15px;
    font-size: 18px;
    font-weight: normal;
    color: #333;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}