/* style.css - Chausar Real UI Plugin */
.chausar-board-container {
    text-align: center;
    font-family: 'Noto Sans Devanagari', sans-serif;
    padding: 20px;
}

.chausar-board {
    position: relative;
    width: 550px;
    height: 550px;
    margin: 20px auto;
    background-color: #fbe9e7;
    border: 4px solid #4e342e;
}

.arm.vertical, .arm.horizontal {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
}

.arm.vertical {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 100%;
    grid-template-rows: repeat(18, 1fr);
}

.arm.horizontal {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 90px;
    grid-template-columns: repeat(18, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

.cell {
    background-color: #ffecb3;
    border: 1px solid #795548;
    width: 30px;
    height: 30px;
}

.center-home {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: #d84315;
    color: white;
    font-size: 32px;
    line-height: 90px;
    border-radius: 12px;
    box-shadow: 0 0 5px #000;
}

.dice-controls {
    margin-top: 20px;
}

.dice-controls button {
    padding: 10px 20px;
    background: #1e88e5;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 10px;
}

.player-turn {
    margin-top: 15px;
    font-weight: bold;
    font-size: 18px;
}
