/* =====================================================
   FISHING SYSTEM — Styles
   ===================================================== */

.fish-equip-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 150px;
    overflow-y: auto;
}

.fish-equip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s;
}
.fish-equip-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
}
.fish-equip-item.selected {
    background: rgba(201,149,42,0.1);
    border-color: rgba(201,149,42,0.4);
}

.fish-equip-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

.fish-equip-info { flex: 1; min-width: 0; }
.fish-equip-name {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fish-equip-stat {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
}

.fish-duration-btn {
    flex: 1;
    padding: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}
.fish-duration-btn:hover {
    background: rgba(255,255,255,0.1);
}
.fish-duration-btn.selected {
    background: rgba(201,149,42,0.2);
    border-color: rgba(201,149,42,0.4);
    color: #c9952a;
}

/* =====================================================
   BESTIARY
   ===================================================== */
.bestiary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
}

.bestiary-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    transition: all 0.15s;
}
.bestiary-card:hover {
    background: rgba(255,255,255,0.06);
}

.bestiary-card-name {
    font-size: 10px;
    font-weight: 600;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bestiary-card-weight {
    font-size: 9px;
    color: #c9952a;
    font-weight: 600;
}
.bestiary-card-count {
    font-size: 9px;
    color: rgba(255,255,255,0.3);
}
/* =====================================================
   EQUIPMENT SLOTS IN PROFILE
   ===================================================== */
.pp-equip-slot {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s;
    min-height: 42px;
}
.pp-equip-slot:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(201,149,42,0.3);
}
.pp-equip-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}
.pp-equip-name {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pp-equip-empty {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    font-style: italic;
}

/* =====================================================
   LEADERBOARD SPECIES CARD
   ===================================================== */
.lb-species-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    transition: all 0.15s;
}
.lb-species-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,149,42,0.3);
}

.bestiary-card-zone {
    font-size: 8px;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
