/* Lobby View specific styles */

#lobby-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0b0c10; /* Ciemny, mroczny kolor tła */
    color: #c5c6c7; /* Jasny tekst dla kontrastu */
    z-index: 2000;
    display: flex;
    flex-direction: row; /* Lewy/Prawy panel */
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

#lobby-screen.hidden {
    display: none !important;
}

/* Lewy Panel - Ustawienia */
#lobby-settings {
    width: 350px;
    min-width: 350px;
    background-color: #1f2833; /* Nieco jaśniejszy niż tło główne */
    border-right: 2px solid #45a29e; /* Mroczny turkusowy akcent */
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.lobby-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #45a29e;
    padding-bottom: 10px;
}

.lobby-header h2 {
    color: #66fcf1; /* Jasny, turkusowy napis */
    margin: 0;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Grupa Ustawień */
.setting-group {
    margin-bottom: 25px;
}

.setting-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #66fcf1;
    font-size: 14px;
    text-transform: uppercase;
}

.setting-group select, .setting-group input[type="range"] {
    width: 100%;
    padding: 8px;
    background-color: #0b0c10;
    color: #c5c6c7;
    border: 1px solid #45a29e;
    border-radius: 4px;
    outline: none;
}

.setting-group select:focus {
    border-color: #66fcf1;
}

.warning-text {
    font-size: 11px;
    color: #ff4c4c;
    margin-top: 5px;
    font-style: italic;
}

/* Przycisk Start */
#btn-start-game {
    margin-top: auto; /* Pcha przycisk na sam dół */
    background-color: #45a29e;
    color: #0b0c10;
    border: 2px solid #66fcf1;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(102, 252, 241, 0.2);
}

#btn-start-game:hover {
    background-color: #66fcf1;
    box-shadow: 0 0 20px rgba(102, 252, 241, 0.6);
}

/* Przycisk Powrotu */
#btn-close-lobby {
    background: transparent;
    color: #c5c6c7;
    border: 1px solid #c5c6c7;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s;
}

#btn-close-lobby:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Prawy Panel - Sandbox Canvas */
#lobby-sandbox {
    flex-grow: 1;
    position: relative;
    background-color: #0b0c10;
    display: flex;
    flex-direction: column;
}

/* Pasek narzędzi nad Canvasem */
#lobby-toolbar {
    height: 60px;
    background-color: rgba(31, 40, 51, 0.8);
    border-bottom: 2px solid #45a29e;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
    z-index: 2;
}

.toolbar-group {
    display: flex;
    gap: 10px;
    align-items: center;
    border-right: 1px solid #45a29e;
    padding-right: 15px;
}
.toolbar-group:last-child {
    border-right: none;
}

.toolbar-label {
    color: #66fcf1;
    font-size: 12px;
    text-transform: uppercase;
}

/* Przyciski Pędzli */
.brush-btn {
    background: #0b0c10;
    border: 1px solid #45a29e;
    color: #c5c6c7;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 12px;
}

.brush-btn:hover {
    background: rgba(69, 162, 158, 0.3);
}

.brush-btn.active {
    background: #45a29e;
    color: #0b0c10;
    border-color: #66fcf1;
    font-weight: bold;
    box-shadow: 0 0 8px rgba(102, 252, 241, 0.5);
}

/* Kontener Canvasu */
#sandbox-canvas-container {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}

#sandbox-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: crosshair;
}
