
body {
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f9e6ff, #ffe6ef);
}


h1 {
    color: #d45c80;
    font-size: 26px;
    margin-bottom: 10px;
}


#status {
    background: #ffffffcc;
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 12px 20px;
    min-width: 150px;

    text-align: center;
    color: #d45c80;
    font-weight: 600;
    margin-bottom: 15px;

    box-shadow: 0 4px 12px rgba(212, 92, 128, 0.25);
}

#status p {
    margin: 5px 0;
}


button {
    padding: 8px 18px;
    font-size: 14px;
    background: #d45c80;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: 0.2s;
}

button:hover {
    background: #bd4b6f;
}


.container {
    display: flex;
    justify-content: center;
    width: 100%;
}

table {
    border: 2px solid #d45c80;
    border-collapse: collapse;
    box-shadow: 0 3px 10px rgba(212, 92, 128, 0.2);

 
    table-layout: fixed;
}


td {
    width: 36px;
    height: 36px;
    border: 1px solid #d45c80;
    background: #fff;

    display: table-cell; /* ← garante colunas normais */

    text-align: center;
    vertical-align: middle;

    transition: 0.15s;
}

td:hover {
    background: #ffe3ed;
    cursor: pointer;
}


td img {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0 auto;

}
