#crosswordTable { /* For text inside board */
    font-family: 'Didot', serif;
    position: relative;
    font-size: 20px;
    margin: 1% auto;
    border-collapse: collapse;
}

#crosswordTable td { /* Individual board squares*/
    border: 3px solid rgb(60, 60, 60);
    width: 40px;
    height: 40px;
    line-height: 1;
    vertical-align: middle;
    text-align: center;
    cursor: cell;
    position: relative;
}

#crosswordTable td div {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
    overflow: hidden;
    cursor: cell;
}

.crosswordTitle {
    font-family: 'American Typewriter', serif;
    text-align: center;
}

.correctTitle {
    color: green;
}

.spacer {
    height: 110px;
}

.spreadButton {
    cursor: pointer;
    display: block-inline;
}

.selected {
    background-color: Bisque;
}

.highlighted {
    background-color: rgb(150,200,250);
}

.correct {
    color: blue;
}

.incorrect {
    color: red;
}

.regular {
    color: black;
}

.blackout {
    background-color: rgb(60,60,60);
}

.noBullets {
    list-style-type: none;
}

.innerCellText {
    font-family: 'Didot', serif;
    position: relative;
    font-size: 20px;
    margin: 1% auto;
    border-collapse: collapse;
    user-select: none;
}

.topLeftText {
    font-family: 'Didot', serif;
    color: rgb(60, 60, 60);
    position: absolute;
    top: 0;
    left: 0;
    font-size: 10px; /* Adjust the size as needed */
    padding: 2px; /* Adjust the padding as needed */
}

.modal {
    display: none; 
    position: fixed; /* Stay in place */
    z-index:  5; /* Sit on top */
    left:  0;
    top:  0;
    width:  100%; /* Full width */
    height:  100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.largeNumber {
    font-size: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin:  15% auto; /*  15% from the top and centered */
    padding:  20px;
    border:  1px solid #888;
    width:  80%; /* Could be more or less, depending on screen size */
}  

.close {
    color: #aaa;
    float: right;
    font-size:  28px;
    font-weight: bold;
}

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

.overlay {
    display: none;
    position: fixed;
    top:  0;
    left:  0;
    z-index: 4;
    width:  100%;
    height:  100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}