body {
   
    background-color: #f0f4ff; /* azul muy suave */
    color: #003366; /* azul oscuro elegante */
    font-family: 'Segoe UI', sans-serif;
}

game-title {
    color: #004c99;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

#moves-list {
    color: #003366;
    font-size: 18px;
}

#container {
    display: flex;
    flex-direction: row;
    margin: 20px;
}

#board {
    width: 640px;
    height: 640px;
   /* background-image: url('/static/img/board/marble.png');*/
    position: relative;
}

.square {
    width: 80px;
    height: 80px;
    float: left;
}

.highlight-green {
    background-color: rgba(0, 255, 0, 0.35);
}

.highlight-orange {
    background-color: rgba(255, 165, 0, 0.35);
}

.highlight-yellow {
    background-color: rgba(255, 255, 0, 0.35);
}

#side-panel {
    margin-left: 30px;
    width: 400px;
}

#stockfish-panel {
    background: #f0f0f0;
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
}
