#gear-equip-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
}

#gear-equip-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    max-width: 900px;
    height: 80vh;
    max-height: 600px;
    background: var(--theme-bg-color);
    border: 2px solid var(--theme-border-color);
    border-radius: 10px;
    color: var(--theme-body-text-color);
    display: flex;
    flex-direction: column;
    padding: 15px;
    box-sizing: border-box;
    z-index: 10;
    backdrop-filter: blur(5px);
}

#gear-equip-container h2 {
    text-align: center;
    margin: 0 0 15px 0;
    font-family: 'Georgia', serif;
    color: var(--theme-primary-text-color);
    border-bottom: 1px solid var(--theme-border-color);
    padding-bottom: 10px;
    padding-left: 40px; /* Make space for button */
    box-sizing: border-box;
}

#gear-equip-main {
    display: flex;
    flex-grow: 1;
    gap: 15px;
    overflow: hidden;
}

/* Left side: Equipped Gear */
#waifu-equipped-panel {
    flex: 0 0 250px;
    background: var(--theme-panel-bg-color);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

#waifu-equipped-panel h3 {
    text-align: center;
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: var(--theme-secondary-text-color);
}
#waifu-avatar-equip {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
}
.equipped-gear-slot {
    width: 100%;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border: 2px dashed #555;
    border-radius: 5px;
    display: flex;
    align-items: center;
    color: #777;
    font-style: italic;
    padding: 5px;
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
}
.equipped-gear-slot:not(.blocked):hover {
    border-color: var(--theme-border-color);
    background-color: rgba(255,255,255,0.08);
}
.equipped-gear-slot .slot-label {
    width: 100%;
    text-align: center;
}
.equipped-gear-slot .equipped-item {
    width: 50px;
    height: 50px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #777;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}
.equipped-gear-slot .equipped-item-info {
    flex-grow: 1;
    font-style: normal;
    color: var(--theme-body-text-color);
    padding-left: 8px;
    text-align: left;
}
.equipped-gear-slot .equipped-item-stats {
    font-size: 0.85em;
    margin: 0;
    color: #a0e8ff; /* Light blue for stats */
    line-height: 1.2;
}


/* Right side: Backpack Panel */
#gear-backpack-panel {
    flex-grow: 1;
    background: var(--theme-panel-bg-color);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#gear-equip-close-btn-wrapper {
    position: absolute;
    top: 15px;
    right: 15px;
}
#gear-equip-close-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    font-size: 22px;
    line-height: 1;
}