/* Crossword Widget Styles */
.games-crossword-widget-content {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.games-crossword-thumbnail {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.games-crossword-grid-thumbnail {
    display: inline-block;
    border: 2px solid #333;
    background: #fff;
    padding: 2px;
    border-radius: 4px;
}

.games-crossword-grid-row {
    display: flex;
}

.games-crossword-cell {
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    background: #fff;
}

.games-crossword-cell.filled {
    background: #0073aa;
    color: #fff;
    border-color: #005a87;
}

.games-crossword-cell.empty {
    background: #f8f9fa;
    color: transparent;
}

.games-crossword-placeholder {
    width: 160px;
    height: 160px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 12px;
    border-radius: 4px;
}

.games-crossword-info {
    text-align: center;
}

.games-crossword-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.games-crossword-date {
    margin: 0 0 15px 0;
    font-size: 12px;
    color: #666;
}

.games-crossword-cta {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.games-crossword-cta:hover {
    background: #005a87;
    color: #fff;
    text-decoration: none;
}

.games-crossword-no-puzzle {
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .games-crossword-cell {
        width: 16px;
        height: 16px;
        font-size: 8px;
    }
    
    .games-crossword-grid-thumbnail {
        transform: scale(0.9);
    }
} 