body {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-align: center;
}

#board {
    width: 397px;
    height: 400px;
    border: 10px solid darkgray;
    background-color: lightgray;

    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

#board div {
    width: 38px;
    height: 38px;
    border: 0.9px solid whitesmoke;

    /* text */
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tile-clicked {
    background-color: darkgrey;
}

.x1 {
    color: blue;
}

.x2 {
    color: green;
}

.x3 {
    color: red;
}

.x4 {
    color: navy;
}

.x5 {
    color: brown;
}

.x6 {
    color: teal;
}

.x7 {
    color: black;
}

.x8 {
    color: gray;
}

#flag-button {
    width: 178px;
    height: 82px;
    font-size: 50px;
    background-color: lightgray;
    border: none;
    margin-right: 20px;
}
#play-again-button {
    margin-top: 0px;
    color: rgb(0, 50, 84);
    padding: 23px;
    font-size: 30px;
    background-color: lightgray;
    border: 1px solid darkgray;
    cursor: pointer;
    float: right;
}
#button-container {
    clear: both; /* Clear the floats */
    margin-top: 20px; /* Adjust as needed */
}#playButton {
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(61, 150, 64); /* Mavi renk, istediğiniz renk ile değiştirebilirsiniz */
    color: white;
    border: none;
    outline: none;
}

/* Çalmıyorken üzerine geçen çizgi */
#playButton::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg); /* 45 derece döndürme */
    opacity: 0; /* Başlangıçta görünmez yapın */
    transition: opacity 0.3s ease;
}

/* Çalmıyorken durumu */
#playButton.stopped::before {
    opacity: 1;
}