/* ==================== EXPEDITION TAB ==================== */
.expedition-section {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Error and Empty States */
.expedition-error,
.expedition-empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(200, 50, 50, 0.3);
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 600px;
}

.expedition-empty-state {
    border-color: rgba(74, 103, 65, 0.3);
}

.expedition-error h2,
.expedition-empty-state h2 {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.expedition-error p,
.expedition-empty-state p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
}

.expedition-error {
    border-color: rgba(200, 50, 50, 0.5);
}

.expedition-error h2 {
    color: #ff6b6b;
}

/* Destination Panel Error State */
.destination-info.error {
    border: 2px solid rgba(200, 50, 50, 0.5);
    background: rgba(200, 50, 50, 0.1);
}

.destination-info.error .destination-icon {
    filter: grayscale(100%) brightness(0.8);
}

.destination-info.error .destination-description {
    color: #ff8888;
}

.expedition-tab-header {
    text-align: center;
    margin-bottom: 24px;
}

.expedition-tab-header h2 {
    color: #4a6741;
    font-size: 1.8rem;
    font-family: 'Courier New', monospace;
    margin: 0 0 8px 0;
}

.expedition-tab-header p {
    color: #888;
    font-size: 0.95rem;
    margin: 0;
}

/* Regionen-Liste im Tab */
.expedition-region-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.expedition-region-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(74, 103, 65, 0.3);
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
}

.expedition-region-card:hover {
    background: rgba(74, 103, 65, 0.15);
    border-color: rgba(74, 103, 65, 0.6);
    transform: translateY(-2px);
}

.expedition-region-icon {
    font-size: 2rem;
    width: 48px;
    text-align: center;
}

.expedition-region-info {
    flex: 1;
}

.expedition-region-name {
    font-weight: bold;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.expedition-region-desc {
    color: #888;
    font-size: 0.85rem;
}

.expedition-region-equipment {
    color: #aaa;
    font-size: 0.8rem;
    margin-top: 4px;
}

.expedition-region-equipment .missing {
    color: #e94560;
}

.expedition-region-equipment .ready {
    color: #4caf50;
}

.expedition-plan-btn {
    padding: 8px 20px;
    background: #4a6741;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    transition: background 0.2s;
    white-space: nowrap;
}

.expedition-plan-btn:hover {
    background: #5a7a51;
}

.empty-state {
    text-align: center;
    color: #888;
    padding: 40px;
    font-style: italic;
}

/* ==================== EXPEDITION PREP PANEL ==================== */
.expedition-prep-panel {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 750px;
    max-height: 90vh;
    background: rgba(26, 26, 26, 0.98);
    border: 2px solid #4a6741;
    border-radius: 8px;
    z-index: 2000;
    box-shadow: 0 8px 32px rgba(74, 103, 65, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.expedition-prep-panel.open {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.expedition-prep-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
}

.expedition-prep-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Header */
.expedition-prep-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(74, 103, 65, 0.3);
}

.expedition-prep-header h2 {
    margin: 0;
    color: #4a6741;
    font-size: 1.5rem;
    font-family: 'Courier New', monospace;
}

.expedition-prep-header .close-button {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.expedition-prep-header .close-button:hover {
    color: #e94560;
}

/* Body */
.expedition-prep-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Steps */
.expedition-step {
    margin-bottom: 28px;
}

.expedition-step h3 {
    color: #4a6741;
    font-size: 1.15rem;
    margin: 0 0 12px 0;
    font-family: 'Courier New', monospace;
    border-bottom: 1px solid rgba(74, 103, 65, 0.2);
    padding-bottom: 8px;
}

/* Step 1: Region Selection */
.expedition-region-select {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(74, 103, 65, 0.3);
    border-radius: 4px;
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    margin-bottom: 12px;
    cursor: pointer;
}

.expedition-region-select option {
    background: #1a1a1a;
    color: #fff;
}

.expedition-region-info {
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    margin-bottom: 12px;
}

.expedition-region-info .region-desc {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.expedition-region-info .region-resources {
    color: #888;
    font-size: 0.85rem;
}

.required-equipment {
    padding: 12px;
    background: rgba(74, 103, 65, 0.1);
    border: 1px solid rgba(74, 103, 65, 0.3);
    border-radius: 4px;
}

.required-equipment .req-title {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: bold;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 0.9rem;
}

.req-item .status {
    font-size: 1rem;
}

.req-item .status.ready {
    color: #4caf50;
}

.req-item .status.missing {
    color: #e94560;
}

.req-item .item-name {
    color: #ccc;
}

.req-item .item-count {
    color: #888;
}

/* Step 2: Backpack */
.expedition-backpack-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.expedition-backpack-header .slots {
    color: #4a6741;
    font-weight: bold;
    font-size: 0.95rem;
}

.backpack-section {
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.backpack-section h4 {
    color: #aaa;
    font-size: 0.85rem;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.backpack-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.backpack-slot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(74, 103, 65, 0.1);
    border: 1px solid rgba(74, 103, 65, 0.2);
    border-radius: 4px;
}

.backpack-slot.filled {
    background: rgba(74, 103, 65, 0.15);
    border-color: rgba(74, 103, 65, 0.4);
}

.backpack-slot .slot-icon {
    font-size: 1.2rem;
    width: 28px;
    text-align: center;
}

.backpack-slot .slot-name {
    flex: 1;
    color: #ccc;
    font-size: 0.9rem;
}

.backpack-slot .slot-amount {
    color: #888;
    font-size: 0.85rem;
    margin-right: 8px;
}

.backpack-slot .slot-empty {
    flex: 1;
    color: #555;
    font-style: italic;
    font-size: 0.85rem;
}

.btn-pack {
    padding: 4px 12px;
    background: #4a6741;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.btn-pack:hover:not(:disabled) {
    background: #5a7a51;
}

.btn-pack:disabled {
    background: rgba(74, 103, 65, 0.3);
    color: #666;
    cursor: not-allowed;
}

.btn-craft-pack {
    padding: 4px 12px;
    background: #b8860b;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.btn-craft-pack:hover:not(:disabled) {
    background: #d4a017;
}

.btn-craft-pack:disabled {
    background: rgba(184, 134, 11, 0.3);
    color: #666;
    cursor: not-allowed;
}

.btn-unpack {
    padding: 4px 12px;
    background: rgba(233, 69, 96, 0.2);
    color: #e94560;
    border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.btn-unpack:hover {
    background: rgba(233, 69, 96, 0.3);
}

/* Available items to pack */
.available-items {
    margin-top: 8px;
}

/* ==================== DRAG & DROP ==================== */
.av-item[draggable="true"],
.bp-slot[draggable="true"] {
    cursor: grab;
    user-select: none;
}

.av-item[draggable="true"]:active,
.bp-slot[draggable="true"]:active {
    cursor: grabbing;
}

.av-item.dragging,
.bp-slot.dragging {
    opacity: 0.4;
    transform: scale(0.95);
}

.available-items.drag-over {
    background: rgba(74, 103, 65, 0.15);
    border: 2px dashed #4a6741;
    border-radius: 6px;
    min-height: 60px;
    transition: all 0.15s ease;
}

.backpack-slots.drag-over {
    background: rgba(74, 103, 65, 0.15);
    border: 2px dashed #4a6741;
    border-radius: 6px;
    min-height: 60px;
    padding: 8px;
    transition: all 0.15s ease;
}

.available-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.available-item:last-child {
    border-bottom: none;
}

.available-item .item-icon {
    font-size: 1rem;
    width: 24px;
    text-align: center;
}

.available-item .item-name {
    flex: 1;
    color: #888;
    font-size: 0.85rem;
}

.available-item .item-amount {
    color: #555;
    font-size: 0.85rem;
    margin-right: 8px;
}

/* Step 3: Character */
.expedition-character-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.expedition-character-card {
    padding: 12px;
    background: rgba(74, 103, 65, 0.1);
    border: 1px solid rgba(74, 103, 65, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.expedition-character-card:hover {
    background: rgba(74, 103, 65, 0.2);
    border-color: rgba(74, 103, 65, 0.5);
    transform: translateY(-2px);
}

.expedition-character-card.selected {
    background: rgba(74, 103, 65, 0.3);
    border-color: #4a6741;
    box-shadow: 0 0 8px rgba(74, 103, 65, 0.4);
}

.expedition-character-card.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.expedition-character-card.disabled:hover {
    transform: none;
    background: rgba(74, 103, 65, 0.1);
}

.char-name {
    font-weight: bold;
    color: #fff;
    margin-bottom: 2px;
}

.char-title {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 4px;
}

.char-traits {
    font-size: 0.8rem;
    color: #aaa;
    font-style: italic;
}

.char-status-badge {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 4px;
}

.char-status-badge.available {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.char-status-badge.busy {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

/* Duration display */
.expedition-duration {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    margin-bottom: 16px;
}

.expedition-duration .dur-label {
    color: #888;
}

.expedition-duration .dur-value {
    color: #4a6741;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
}

/* Footer */
.expedition-prep-footer {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid rgba(74, 103, 65, 0.3);
}

.expedition-prep-footer button {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.expedition-prep-footer .btn-primary {
    background: #4a6741;
    color: #fff;
}

.expedition-prep-footer .btn-primary:hover:not(:disabled) {
    background: #5a7a51;
    box-shadow: 0 4px 12px rgba(74, 103, 65, 0.4);
}

.expedition-prep-footer .btn-primary:disabled {
    background: rgba(74, 103, 65, 0.3);
    color: #666;
    cursor: not-allowed;
}

.expedition-prep-footer .btn-secondary {
    background: rgba(74, 103, 65, 0.1);
    border: 1px solid rgba(74, 103, 65, 0.3);
    color: #ccc;
}

.expedition-prep-footer .btn-secondary:hover {
    background: rgba(74, 103, 65, 0.2);
}

/* ==================== EXPEDITION RESULT MODAL ==================== */
.expedition-result-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expedition-result-modal.open {
    opacity: 1;
}

.expedition-result-content {
    background: rgba(26, 26, 26, 0.98);
    border: 3px solid #4a6741;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(74, 103, 65, 0.5);
    animation: resultSlideIn 0.4s ease-out;
}

.expedition-result-header {
    background: linear-gradient(135deg, #4a6741 0%, #3a5731 100%);
    padding: 24px;
    text-align: center;
}

.expedition-result-header h2 {
    margin: 0;
    color: #fff;
    font-size: 1.8rem;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.expedition-result-body {
    padding: 24px;
    overflow-y: auto;
    max-height: 60vh;
}

.expedition-summary {
    text-align: center;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(74, 103, 65, 0.1);
    border: 1px solid rgba(74, 103, 65, 0.3);
    border-radius: 8px;
}

.expedition-summary .summary-line {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.expedition-summary .summary-line strong {
    color: #4a6741;
}

/* Loot */
.loot-section {
    margin-bottom: 24px;
}

.loot-section h3 {
    color: #4a6741;
    font-size: 1.1rem;
    margin: 0 0 12px 0;
    font-family: 'Courier New', monospace;
    text-align: center;
}

.loot-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.loot-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 6px;
}

.loot-item .loot-icon {
    font-size: 1.5rem;
}

.loot-item .loot-name {
    color: #ccc;
    font-weight: bold;
}

.loot-item .loot-amount {
    color: #888;
}

/* Empty loot */
.no-loot {
    text-align: center;
    color: #888;
    font-style: italic;
    padding: 20px;
}

/* Story text */
.expedition-story {
    font-size: 1rem;
    font-style: italic;
    color: #aaa;
    text-align: center;
    padding: 16px;
    border-left: 3px solid #4a6741;
    background: rgba(74, 103, 65, 0.05);
    border-radius: 0 6px 6px 0;
}

/* Footer */
.expedition-result-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(74, 103, 65, 0.3);
    display: flex;
    justify-content: center;
}

.expedition-result-footer .btn-primary {
    padding: 14px 48px;
    font-size: 1.1rem;
    min-width: 150px;
    background: #4a6741;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    transition: background 0.2s;
}

.expedition-result-footer .btn-primary:hover {
    background: #5a7a51;
}

/* Scrollbar */
.expedition-prep-body::-webkit-scrollbar,
.expedition-result-body::-webkit-scrollbar {
    width: 8px;
}

.expedition-prep-body::-webkit-scrollbar-track,
.expedition-result-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.expedition-prep-body::-webkit-scrollbar-thumb,
.expedition-result-body::-webkit-scrollbar-thumb {
    background: rgba(74, 103, 65, 0.5);
    border-radius: 4px;
}

.expedition-prep-body::-webkit-scrollbar-thumb:hover,
.expedition-result-body::-webkit-scrollbar-thumb:hover {
    background: rgba(74, 103, 65, 0.7);
}


/* ========================================
   PHASE 1 MVP - DRAG & DROP STYLES
   Expedition Prep UI with Backpack Grid
   ======================================== */

/* Phase 1: Grid layout for prep phase */
.expedition-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    padding: 20px;
}

.expedition-left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expedition-right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

/* Equipment & Food grids - 4x4 and 2x4 */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 60px);
    gap: 10px;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(4, 60px);
    grid-template-rows: repeat(2, 60px);
    gap: 10px;
}

/* Count badge on source icons */
.expedition-count-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    pointer-events: none;
}

/* Disabled icons */
.expedition-icon-disabled {
    opacity: 0.3;
    cursor: not-allowed !important;
    background: linear-gradient(135deg, #444 0%, #333 100%) !important;
}

/* Backpack grid container */
.expedition-backpack-grid {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 10px;
    border: 2px solid #555;
}

/* Items in grid */
.expedition-item-in-grid {
    position: absolute;
    cursor: grab;
    z-index: 10;
}

.expedition-item-in-grid:active {
    cursor: grabbing;
}

/* Character selector */
.character-list {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.character-icon-btn {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(74, 103, 65, 0.4);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.8);
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.character-icon-btn:hover {
    background: rgba(74, 103, 65, 0.1);
    border-color: rgba(74, 103, 65, 0.6);
    transform: translateY(-2px);
}

.character-icon-btn.selected {
    border-color: #66ff66;
    background: rgba(74, 103, 65, 0.2);
    box-shadow: 0 0 8px rgba(102, 255, 102, 0.4);
}

.character-icon-btn.exhausted {
    opacity: 0.5;
    cursor: not-allowed;
}

.character-icon-btn.exhausted:hover {
    transform: none;
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(74, 103, 65, 0.4);
}

.character-icon-btn .character-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 1;
    font-size: 50px;
}

.character-icon-btn .character-icon img {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.character-icon-btn .selected-indicator {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: #66ff66;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #000;
    z-index: 10;
    font-weight: bold;
}

/* Character tooltip */
.expedition-character-tooltip {
    position: absolute;
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid #4a6741;
    border-radius: 6px;
    padding: 12px;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    min-width: 200px;
}

.expedition-character-tooltip strong {
    display: block;
    color: #66ff66;
    font-size: 16px;
    margin-bottom: 6px;
}

.expedition-character-tooltip .role {
    color: #aaa;
    font-size: 12px;
    margin-bottom: 8px;
}

.expedition-character-tooltip .skills {
    margin-top: 8px;
}

.expedition-character-tooltip .skills > div {
    margin: 4px 0;
    color: #ccc;
}

.expedition-character-tooltip .exhausted-tag {
    margin-top: 8px;
    color: #e94560;
    font-weight: bold;
}

/* Start button */
.expedition-btn-start {
    width: 100%;
    max-width: 600px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #66ff66 0%, #44cc44 100%);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.expedition-btn-start:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #444;
    color: #888;
}

/* FIX: Items in backpack should be larger and not show count badges */
.expedition-item-in-grid {
    font-size: 50px !important; /* Larger icon in backpack */
    background: rgba(74, 103, 65, 0.2) !important; /* Visible background */
    border: 2px solid rgba(74, 103, 65, 0.4) !important;
    display: flex !important; /* Center icon */
    align-items: center !important;
    justify-content: center !important;
}

.expedition-item-in-grid .expedition-count-badge {
    display: none !important; /* Hide count badges for items IN backpack */
}

/* Source icons remain smaller with badges */
.expedition-equipment-panel .expedition-source-icon,
.expedition-food-panel .expedition-source-icon {
    font-size: 30px;
}

/* DRAG PREVIEW FIXES */
.expedition-drag-preview {
    position: fixed !important;
    pointer-events: none;
    z-index: 10000 !important;
    opacity: 0.8;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 50px; /* Match backpack item size */
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: border 0.1s ease, background 0.1s ease;
}

.expedition-drag-preview.expedition-invalid-position {
    border: 3px solid #ff0000 !important;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8) !important;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%) !important;
}

/* ITEM DRAGGING STATE */
.expedition-item-in-grid.expedition-dragging {
    opacity: 0.3 !important;
}

/* SOURCE ICON DRAGGING STATE (from equipment/food panel) */
.expedition-source-icon.expedition-dragging {
    opacity: 0.3 !important;
}


/* ==================== ZONE DISPLAY (ACTIVE EXPEDITION) ==================== */
.expedition-zone-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(74, 103, 65, 0.2);
    border: 1px solid rgba(74, 103, 65, 0.4);
    border-radius: 8px;
    margin-bottom: 16px;
}

.expedition-zone-info .zone-label {
    font-size: 1.5rem;
}

.expedition-zone-info .zone-name {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
}

