/* Page 45 Specific Styles */

.interactive-clothes-male {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.interactive-clothes-male .main-image {
    width: 100%;
    display: block;
}

.interactive-clothes-male .label-group {
    position: absolute;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.interactive-clothes-male .label-group:hover {
    transform: scale(1.05);
    z-index: 20;
}

.interactive-clothes-male .label-text {
    background: white;
    padding: 5px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-weight: bold;
    font-size: 1rem;
    color: #333;
    border: 2px solid #ffcc00; /* Match yellow theme */
    z-index: 10;
    white-space: nowrap;
}

.interactive-clothes-male .label-text:hover {
    background-color: #fff8e1;
    border-color: #ff9900;
    color: #000;
}

/* SVG Overlay */
.lines-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Let clicks pass through */
    z-index: 5;
}

.lines-overlay line {
    stroke: #333;
    stroke-width: 2.5;
    stroke-linecap: round;
}

/* Specific Positions - Labels only */

/* Laung (Head) */
.interactive-clothes-male .label-laung {
    top: 10%;
    right: 5%;
}

/* Jacket (Chest) */
.interactive-clothes-male .label-jacket {
    top: 36%;
    right: 5%;
}

/* Sabuk Arguci (Waist/Belt) */
.interactive-clothes-male .label-arguci {
    top: 50%;
    right: 2%; /* Labels on the right side */
}

/* Trousers (Legs) */
.interactive-clothes-male .label-trousers {
    top: 70%;
    right: 1%;
}

/* Shoes (Feet) */
.interactive-clothes-male .label-shoes {
    top: 85%;
    right: 4%;
}


/* Responsive adjustments if needed */
@media (max-width: 400px) {
    .interactive-clothes-male .label-text {
        font-size: 0.8rem;
        padding: 3px 6px;
    }
}
