.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgb(0, 127, 255), rgb(0, 181, 255));
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.menu:hover {
    transform: translateY(-2px);
}

.menu:active {
    transform: scale(0.97);
}

.user-menu {
    display: flex;
    justify-content: right;
    align-items: center;
}

.buttons {
    background-color: rgb(227, 242, 253);
    /*background: linear-gradient(135deg, rgb(227, 242, 253), white);*/
    border-radius: 10px;
    height: 30px;
    margin: 3px;
    font-size: 18px;
}

.buttons.blue {
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, rgb(74, 74, 238), #5b93ee);
}

.buttons.red {
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, rgb(250, 63, 63), #fc7272);
}

.buttons.green {
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #2ff128, lime);
}

.cursor-pointer {
    cursor: pointer;
}

#player1, #player2 {
    position: fixed;
    /*height: 45.649%; /*height: 45.2122%;*/
}

/*
#player1 {
    left: -33%;
}

#player2 {
    left: 0%;
    transition: all 0.25s ease;
}
*/

.overlap {
    left: 0% !important;
}

.waiting {
    pointer-events: none;
    left: 33% !important;
}

.waiting::backdrop {
    background-color: rgba(0, 0, 0, 0) !important;
}

.popover {
    padding: 20px;
    background: white;
    border: 2px solid black;
}

.popover::backdrop {
    background-color: rgba(0, 0, 0, 0.1);
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.input {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    margin-left: 10px;
    width: 115px; /*136px if padding === 1*/
    margin-top: 5px;
}

.table {
    table-layout: fixed;
    width: 100%;
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.gameOver {
    pointer-events: none;
}

.noPointer {
    pointer-events: none;
}

@keyframes pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.pop {
  animation: pop 0.25s ease;
}

.label-extra {
    display: flex;
}

.settings {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-sizing: border-box;
    width: 50%;
    margin-left: auto;
}

.margin-bottom {
    margin-bottom: 5px;
}

.buttons-menu {
    padding: 10px 16px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    cursor: pointer;
    transition: all 0.1s ease;
    margin-bottom: 10px;
}

.buttons-menu:active {
    transform: scale(0.98);
}

.buttons-menu.pressed {
    pointer-events: none;
    opacity: 0.6;
    transform: scale(0.98);
    background: #e0e0e0;
}

.login {
    width: 100%;
}

.no-button {
	pointer-events: none;
  	background-color: white;
  	border: none;
}