/* UI State Styles */
.empty-state {
    text-align: center;
    padding: 30px 20px;
    color: #666;
    border: 1px dashed #ddd;
    border-radius: 8px;
    margin: 10px 0;
    background: #f9f9f9;
}

.error-state {
    text-align: center;
    padding: 20px;
    color: #d9534f;
    border: 1px solid #d9534f;
    border-radius: 8px;
    margin: 10px 0;
    background: rgba(217, 83, 79, 0.05);
}

.error-state i {
    font-size: 24px;
    margin-bottom: 10px;
}

.error-state button {
    margin-top: 10px;
    background: #d9534f;
    border: none;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
}

/* Game world themed UI states */
.game-ui .empty-state {
    color: rgba(255, 255, 255, 0.7);
    border: 1px dashed rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.1);
}

.game-ui .error-state {
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.4);
    background: rgba(255, 107, 107, 0.1);
}
