body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #edb348;
    margin-top: 40px;
}

h1 {
    color: #000000;
    margin-bottom: 5px;
}

#instructions {
    color: #000000;
    margin-bottom: 20px;
    font-size: 14px;
}

#game-container {
    display: inline-block;
    background: rgb(255, 254, 254);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(50, 50, 50, 0.1);
}

.grid {
    display: grid;
    grid-template-columns: 30px repeat(5, 50px);
    gap: 5px;
    align-items: center;
    justify-items: center;
}

.cell {
    width: 50px;
    height: 50px;
    background-color: #020000;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.cell:hover:not(.revealed) {
    background-color: #bbb;
}

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

.cell.bomb {
    background-color: #b90c0c;
    color: white;
}

.label {
    font-weight: bold;
    color: #555;
    font-size: 16px;
}

#message {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    min-height: 30px;
}

#restart-btn {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: none;
}

#restart-btn:hover {
    background-color: #0056b3;
}
