/* DOWNLOAD ICON */

.download-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: black;
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    z-index: 5;
}

.download-icon:hover {
    background: #333;
}


/* PREVIEW BOX FIX */

.preview-box {
    position: relative;
}


.shirts-title {
    display: flex;
    align-items: center;
    /* Vertically aligns them */
    justify-content: center;
    /* This centers both items horizontally */
    gap: 12px;
    /* Space between the text and the button */
    width: 100%;
    /* Ensures the container takes up full width to allow centering */
    font-family: sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
}

.info-icon {
    background-color: #007bff;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    /* Rounded look */
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s;
}

.info-icon:hover {
    background-color: #0056b3;
    transform: scale(1.05);
    /* Slight grow effect on hover */
}