body {
    font-family: Calibri, sans-serif;
    background-color: black;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

#info {
    margin: 20px;
    font-size: 20px;
}

#game-board {
    display: grid;
    grid-template-columns: repeat(10, 30px);
    grid-template-rows: repeat(10, 30px);
    gap: 2px;
    justify-content: center;
    margin: 20px auto;
}

.cell {
    position: relative; /* Hinzufügen einer relativen Position für die Flagge */
    width: 30px;
    height: 30px;
    background-color: #bdbdbd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    color: black; /* Textfarbe in den Feldern */
    border-radius: 4px; /* Leicht abgerundete Ecken */
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Schatten für 3D-Effekt */
    transition: background-color 0.3s ease; /* Übergang für den Mouse-Over-Effekt */
}

.cell:hover {
    background-color: #c0c0c0; /* Ändern der Hintergrundfarbe bei Mouse-Over */
}

.cell.revealed {
    background-color: #e0e0e0;
    cursor: default;
}

.cell.mine {
    background-color: red;
}

.cell.flagged {
    background-color: yellow;
}

.flag {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 10px;
    color: red;
}
