/* zerocell.css */

#container {
    justify-content: normal;
}

/* ── 무기 목록 ── */
.weapon-item {
    color: gray;
    cursor: pointer;
    transition: color 0.2s;
}

.weapon-item:nth-child(even) {
    background-color: rgba(231, 239, 255, 1);
}

.weapon-item:hover,
.weapon-item.selected {
    color: black;
}

/* ── 아이템 정보 ── */
#iteminfo {
    position: relative;
    box-sizing: border-box;
    padding: 0;
    width: 312px;
}

#item-tooltip__header {
    width: 310px;
}

.item-tooltip__container img {
    margin-top: -20px;
}

.item-tooltip__content {
    padding: 0;
    margin-top: -18px;
    padding-right: 20px;
    margin-bottom: 15px;
}

/* ── 옵션 레이아웃 ── */
.item__option-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item__option-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

.item__option {
    display: flex;
    align-items: center;
    width: 300px;
    border: 1px solid rgba(198, 198, 198, 1);
    padding: 5px;
    border-radius: 5px;
}

.optionSelect {
    width: 250px;
}

.min-max-display {
    color: gray;
    font-size: 0.9em;
    white-space: nowrap;
}

/* ── 입력 필드 (zerocell 전용 오버라이드) ── */
input {
    border: 1px solid black;
}

input[type="number"] {
    text-align: center;
    width: 60px;
}

/* ── 결과 색상 ── */
.good { color: blue; }
.bad  { color: red; }
