#app {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c3dbff;
}

#table {
    width: 95vh;
    height: 95vh;
    position: relative;
    border-radius: 20px;
    border: 2px solid rgb(255, 136, 0);
}

.player {
    background-color: rgba(255, 255, 255, 0);
}

#player-top {
    top: 20px;
    right: 20px;
    width: 650px;
    height: 75px;
    display: flex;
    position: absolute;
    flex-direction: row-reverse;
}

#player-left {
    top: 20px;
    left: 20px;
    width: 75px;
    height: 650px;
    display: flex;
    position: absolute;
    flex-direction: column;
}

#player-right {
    right: 20px;
    width: 75px;
    bottom: 20px;
    height: 650px;
    display: flex;
    position: absolute;
    flex-direction: column-reverse;
}

#player-bottom {
    left: 20px;
    width: 650px;
    height: 75px;
    bottom: 20px;
    display: flex;
    position: absolute;
}

.player-top-card {
    width: 50px;
    display: flex;
    color: green;
    border-radius: 5px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border: 1px solid green;
    background-color: white;
}

.player-left-card {
    width: 75px;
    height: 50px;
    display: flex;
    color: green;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    border: 1px solid green;
    background-color: white;
}

.player-right-card {
    width: 75px;
    height: 50px;
    display: flex;
    color: green;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    border: 1px solid green;
    background-color: white;
}

.player-bottom-card {
    width: 50px;
    display: flex;
    color: green;
    border-radius: 5px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border: 1px solid green;
    background-color: white;
}