#notification {
    position: fixed;
    z-index: 1001;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    font-weight: bold;
    pointer-events: none;
    color: #000000;
    opacity: 0;
}
div.guessing-container {
    background-color: var(--verylightxl);
    width: 1200px;
    padding: 20px;
    position:relative;
    margin-left:auto;
    margin-right: auto;
    margin-bottom: 100px;
    margin-top: 100px;
    border-radius: 50px;
    border: 5px solid var(--light);
}
#tableguess {
    table-layout: fixed;
    margin:auto;
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
}
#tableguess td, #tableguess th {
    border: 2px solid var(--light);
    border-radius: 10px;
    height: 50px;
    text-align: center;
    background-color: var(--almostwhite);
    overflow: hidden;
}
#tableguess td {
    position: relative;
}
#tableguess td p {
    color: #000000;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
#tableguess th {
    /* background-image: radial-gradient(#fcfcc5,#fafa9e); */
    background-image: radial-gradient(#b87a00,#996600);
    color: #ffffff;
    font-size: 1rem;
}
.btn-container {
    position: sticky;
    z-index: 1000;
    right: 0;
    left: 0;
    top: 0px;
    text-align: center;
    padding: 40px 0px;
    width: 475px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    border-radius: 20px;
}
#countries {
    width: 254px;
    border: 2px solid var(--light);
    border-top: none;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    max-height: 0px;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    overflow-y: auto;
}
#countries::-webkit-scrollbar {
    width: 0px;
}
.countryoptions:first-child {
    border-top: 0px;
}
.countryoptions {
    background-color: var(--almostwhite);
    font-size: 1.125rem;
    color: #000000;
    padding: 4px;
    border-top: 2px solid var(--light);
    color: var(--dark);
}
.countryoptions:hover {
    background-color: var(--verylightxl);
}
input#text-guess {
    position: static;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--almostwhite);
    /* background-image: radial-gradient(#fcfcc5,#fafa9e); */
    width: 250px;
    height: 30px;
    border: 2px solid var(--light);
    text-align: center;
    color: var(--dark);
    font-weight: bold;
    font-size: 1.25rem;
    font-family: var(--font);
}
#text-guess:focus {
    outline: none;
}
.text-guess-off-focus {
    border-radius: 15px;
}
.text-guess-focus {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
#guess-btn {
    position: absolute;
    right: 0;
    height: 35px;
    width: 100px;
    background-color: var(--verylight);
    border: 4px outset var(--verylight);
    border-radius: 20px;
    font-weight: bold;
    color: var(--dark);
    font-size: 1.25rem;
    font-family: var(--font);
}
#guess-btn:active {
    border-style: inset;
}
#guess-btn:focus {
    outline: none;
}
#guess-btn:hover {
    background-color: var(--light);
}