/* Klasyczna, czysta czcionka */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #121212; /* Klasyczne, bardzo ciemne tło */
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: center;
}

/* Pole do wpisywania */
#gameInput, #commentInput, #searchInput {
    display: block;
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    margin-bottom: 12px;
}

#gameInput:focus, #commentInput:focus, #searchInput:focus {
    border-color: #28a745; 
}

#gameInput::placeholder, #commentInput::placeholder, #searchInput::placeholder {
    color: #888888;
}

/* Przycisk */
#addBtn {
    display: block;
    width: 100%;
    max-width: 400px;
    padding: 12px;
    background-color: #28a745; /* Klasyczny zielony */
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
}

#backBtn {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 10px 18px;
    width: auto;
    max-width: none;
    background-color: #1e1e1e; /* Szare tło */
    border: 1px solid #333;
    border-radius: 8px;
    color: #888888;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none; /* Przydatne, gdy używasz tagu <a> */
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    z-index: 1000;
}

#backBtn:hover {
    background-color: #333333; /* Jaśniejszy szary po najechaniu */
    border-color: #555555;
}

/* Ciemniejszy zielony po najechaniu myszką */
#addBtn:hover {
    background-color: #218838;
}

#addBtn:disabled {
    background-color: #333333;
    color: #777777;
    cursor: not-allowed;
}

#status {
    font-size: 0.9rem;
    color: #888888 !important;
    margin-bottom: 25px;
    min-height: 20px;
    text-align: center;
}

/* Lista gier */
#gameList {
    list-style: none;
    width: 100%;
    max-width: 400px;
}

/* Proste kafelki z listą */
#gameList li {
    background-color: #1e1e1e;
    margin-bottom: 8px;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #333;
    font-size: 1.05rem;
    color: #dddddd;
}