/* Crypto Tool Specific Styles */

/* Hash Results */
.hash-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hash-item {
    background: var(--bg-input);
    border-radius: var(--border-radius-xs);
    padding: 15px;
}

.hash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.hash-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.hash-value {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.85rem;
    color: #38ef7d;
    word-break: break-all;
    line-height: 1.6;
}

/* Compare Result */
.compare-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--bg-input);
    border-radius: var(--border-radius);
    text-align: center;
}

.compare-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--tools-gradient);
}

.compare-icon.mismatch {
    background: linear-gradient(135deg, #fc466b, #3f5efb);
}

.compare-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.compare-text.match {
    color: #38ef7d;
}

.compare-text.mismatch {
    color: #fc466b;
}

/* Compare Inputs */
.compare-inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .compare-inputs {
        grid-template-columns: 1fr;
    }

    .hash-value {
        font-size: 0.75rem;
    }
}