

#dict_menu {
    background-color: #444;
    width: 100%;
    max-width: 800px;
    border-radius: 3px;
}
#dict_menu td {
    background-color: #444;
    width: 25%;
    text-align: center;
    padding: 0 5px;
    border: 2px solid #777;
    border-radius: 2px;
    cursor:pointer;
}

#gamePanel {
    background-color: #222;
    width: 90%;
    max-width: 800px;
    margin: auto;
    margin-top: 65px;
    padding: 15px;
    border: 1px solid black;
    border-radius: 5px;
}
#clue_table table,
#display_table table {
    background-color: #111;
    width: auto;
    padding: 3px 8px;
    margin: 5px 0;
    border: 2px solid #666;
    border-radius: 10px;
}
#gamePanel input {
    background-color: white;
    height: 20px;
    width: 20px;
    text-align: center;
    font-size: 26px;
    border: 1px solid black;
    border-radius: 10px;
}

#cluePanel {
    background-color: #333;
    padding: 10px;
    border: 2px solid black;
    border-radius: 5px;
}

#attempts {
    font-weight: bold;
}

#view_dictionary_button {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 22;
}

#dictionary_display {
    display: none;
    background-color: #333;
    position: fixed;
    top: 50px;
    right: 10px;
    height: auto;
    width: auto;
    padding: 15px 25px;
    z-index: 22;
}





