.modal {
    display: none;
    position: fixed;
    z-index: 3;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: rgb(124, 21, 21);
    margin: auto;
    padding: 20px;
    border: 1px solid #FF1C1C;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.modal-content.show {
    transform: scale(1);
    opacity: 1;
}

.close-button {
    color: #FFFFFF;
    float: right;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.close-button:hover,
.close-button:focus {
    color: #FF1C1C;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    border-bottom: 1px solid #FF1C1C;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #ffffff;
}

.modal-body {
    max-height: 300px;
    overflow-y: auto;
}

ul {
    list-style-type: none;
    padding: 0;
}

/* Estilo adicional para o modal de anotações */
#notes-modal {
    display: none; /* Escondido por padrão */
    position: fixed;
    z-index: 4;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

#notes-modal .modal-content {
    background-color: rgb(124, 21, 21);
    margin: auto;
    padding: 20px;
    border: 1px solid #FF1C1C;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

#notes-modal .modal-content.show {
    transform: scale(1);
    opacity: 1;
}

#notes-modal .close-button {
    color: #FFFFFF;
    float: right;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

#notes-modal .close-button:hover,
#notes-modal .close-button:focus {
    color: #FF1C1C;
    text-decoration: none;
    cursor: pointer;
}

#notes-modal .modal-header {
    border-bottom: 1px solid #FF1C1C;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#notes-modal .modal-header h2 {
    margin: 0;
    color: #ffffff;
}

#notes-modal .modal-body {
    max-height: 300px;
    overflow-y: auto;
}

#bingo-notes {
    width: 100%;
    height: 200px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: none;
    background-color: rgb(124, 21, 21);
    color: #FFFFFF; /* Texto branco */
    font-weight: bold;
    font-size: calc(10px + 1vw);
}

/* Placeholder na cor branca clara */
#bingo-notes::placeholder {
    color: #FFFFFF;
    opacity: 0.7;
}

/* Estilo para a borda branca quando o textarea está focado */
#bingo-notes:focus {
    outline: none; /* Remove o outline padrão */
    border: 1px solid #FFFFFF; /* Define a borda como branca */
}

.notes-button {
    right: 0;
    position: fixed;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    bottom: 10px;
    display: flex;
    align-items: center;
    z-index: 2;
}
button.notes-button:hover {
    background-color: #555;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}


