/* Estilos Específicos do Lab 03 */

.legend-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #ccc;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    margin-top: 2px;
}

.cache-table td {
    padding: 6px 4px;
    border-bottom: 1px solid #222;
    color: #fff;
}

.cache-row-hit {
    animation: flashHit 1s ease-out;
}

@keyframes flashHit {
    0% { background-color: rgba(16, 185, 129, 0.5); }
    100% { background-color: transparent; }
}

.status-hit {
    color: #10b981;
    font-weight: bold;
}

.status-miss {
    color: #ef4444;
    font-weight: bold;
}

.cache-row-expired td {
    color: #555 !important;
    text-decoration: line-through;
}

.cache-row-expired td:last-child {
    text-decoration: none;
    font-size: 0.75rem;
    font-style: italic;
}
