body {
   /* display: flex; 
    justify-content: center; 
    align-items: center; */ 
    background-color: blanchedalmond;
    font-family: system-ui;
    margin: 20px 6vw;
}

* {
    box-sizing: border-box;
}
.tabla_sah {
    display: flex; 
    width: 80vh; 
    height: 80vh; 
    flex-direction: column;
    border-bottom: 1px solid black;
    border-right: 1px solid black;
}
.rand {
    display: flex; 
    width: 100%;
    height: 10vh;
}
.patrat {
    height: 10vh;
    width: 10vh;
    border-top: 1px solid black;
    border-left: 1px solid black;
    /*background-color: rgb(255, 197, 127) ;*/
}

.rand:nth-of-type(odd) .patrat:nth-of-type(even) {
    background-color: rgb(205, 197, 188) ;
}

.rand:nth-of-type(odd) .patrat:nth-of-type(odd) {
    background-color: rgb(255, 197, 127) ;
}

.rand:nth-of-type(even) .patrat:nth-of-type(odd) {
    background-color:  rgb(205, 197, 188) ;
}

.rand:nth-of-type(even) .patrat:nth-of-type(even) {
    background-color: rgb(255, 197, 127) ;
}

 .rand:last-of-type .patrat {
    border-bottom: 1px solid black;
}

.piesa {
    font-size: 7vh;
    line-height: 1;
    cursor: grab;
    user-select: none;
    position: relative;
    top: 1vh;
    left: 1.3vh;
}
.piesa:active {
    cursor: grabbing;
}

.info_dreapta {
    text-align: center;
    width: 100%;
    padding: 3vh 1vw;
    border: 2px solid brown;
    border-right: 0;
    border-radius: 25px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-image: linear-gradient(to right, rgba(150, 73, 40, 0.725), rgba(150, 73, 40, 0.571), blanchedalmond);
    /* box-shadow: -10px 0px 12px -4px rgb(176, 165, 152); /* rgba(120, 119, 119, 0.836) rgba(0, 0, 0, 0.5) */ 
    box-shadow: 
    -5px 0px 5px rgb(205, 197, 188),
    -5px 0px 10px rgb(205, 197, 188),
    -5px 0px 15px rgb(205, 197, 188);
}