/* Pełny ekran */
.full-screen-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: #0b0d10;
    z-index: 99999;
    color: white;
    display: flex;
    flex-direction: column;
}

.generator-header {
    height: 60px;
    background: #16191d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-bottom: 2px solid #ff9000;
}

.generator-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.gen-sidebar {
    width: 250px;
    background: #111418;
    padding: 20px;
    border-right: 1px solid #333;
}

.items-grid-full {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    padding: 20px;
    overflow-y: auto;
    background: #080a0c;
}

.selected-items-pane {
    width: 350px;
    background: #111418;
    border-left: 1px solid #333;
    overflow-y: auto;
    padding: 15px;
}

.item-card {
    background: #1a1d22;
    border: 2px solid #333;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.item-card:hover {
    background: rgba(255, 144, 0, 0.15) !important;
    border-color: #ff9000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 144, 0, 0.2);
}

.item-card img { width: 32px; height: 32px; }
.item-card p { font-size: 11px; margin-top: 5px; color: #bbb; }

.close-gen-btn {
    background: #ff9000;
    color: black;
    border: none;
    padding: 8px 15px;
    font-weight: bold;
    cursor: pointer;
}

.w-100 { width: 100%; }