/* history.css - Translation history panel styles */

.history-panel {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
}

.history-panel h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2rem;
}

.history-list {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.history-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.history-item:hover {
    background-color: #f8f9fa;
}

.history-item:last-child {
    border-bottom: none;
}

.history-source {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 2px;
}

.history-target {
    color: #666;
}

.history-time {
    color: #999;
    font-size: 12px;
    margin-top: 5px;
}

.no-history {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}