/* Public styles for Steampunk Expeditions V2 */
.sev2-expedition { padding: 1rem; border: 1px solid #ccc; }

/* current game display styling */
.sev2-current-game {
    background: linear-gradient(135deg, #6B8E5F 0%, #8B7355 100%);
    border: 2px solid #8B7355;
    border-radius: 10px;
    padding: 6px 9px;
    margin: 6px 0;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.05em;
    display: block;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* current team display styling */
.sev2-current-team {
    background: linear-gradient(135deg, #6B8E5F 0%, #8B7355 100%);
    border: 2px solid #8B7355;
    border-radius: 10px;
    padding: 6px 9px;
    margin: 6px 0;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.05em;
    display: block;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* team picker styling */
.spx-team-picker select { margin-right: 6px; }
.spx-team-picker input[type="text"] { margin-left: 6px; }
.spx-team-msg { margin: 0.5em 0; color: green; }
.spx-current-team { font-weight: bold; }

/* inventory grid styling */
.spx-inventory-grid {
    margin: 10px 0;
}
/* Collector card style for inventory grid */
.spx-inv-cell {
    transition: box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border: 2px solid #8B7355;
    border-radius: 16px;
    background: linear-gradient(135deg, #f9f9f9 0%, #e6d3b3 100%);
    padding: 16px 12px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;
    max-width: 320px;
    position: relative;
}
.spx-inv-cell:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    background: #f1e9d2;
}
.spx-inv-name {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 6px;
}
.spx-inv-count {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 6px;
}
.spx-inv-type {
    font-size: 0.8em;
    color: #888;
    margin-bottom: 6px;
}
.spx-inv-desc {
    font-size: 1em;
    color: #666;
    margin-top: 8px;
    text-align: center;
    min-height: 32px;
}
.spx-inv-name {
    font-size: 1.1em;
}
.spx-inv-count {
    font-size: 0.75em;
    color: #555;
}
.spx-inv-type {
    font-size: 0.5em;
    color: #888;
}

