/* Move History Section */
.move-history {
    background-color: var(--move-yellow);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
}

.move-history-header {
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.move-history-content {
    flex-grow: 1;
    background-color: white;
    border-radius: 8px;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.move-entry {
    padding: 0.75rem;
    border-radius: 6px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.move-entry:nth-child(even) {
    background-color: #e9ecef;
}

.move-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.player-name {
    font-weight: bold;
    color: #333;
}

.move-word {
    color: #666;
    font-size: 0.9rem;
}

.move-score {
    font-weight: bold;
    color: var(--score-red);
    font-size: 1.1rem;
}

.move-position {
    font-size: 0.8rem;
    color: #888;
}

/* Empty State */
.no-moves {
    text-align: center;
    color: #666;
    padding: 2rem;
    font-style: italic;
}

/* Scrollbar Styles */
.move-history-content::-webkit-scrollbar {
    width: 8px;
}

.move-history-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.move-history-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.move-history-content::-webkit-scrollbar-thumb:hover {
    background: #555;
} 