.hash-input-area {
    height: 140px;
    font-size: 14px;
    border-radius: 12px !important;
    padding: 15px;
    border: 1px solid #d1d5db;
}
.hash-output-container {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}
.hash-output-container:hover {
    border-color: #3b82f6;
    background: #ffffff;
}
.hash-label {
    font-size: 12px;
    font-weight: 800;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.hash-value-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.hash-value {
    font-family: monospace;
    font-size: 13.5px;
    color: #111827;
    font-weight: bold;
    word-break: break-all;
    flex-grow: 1;
}
.copy-hash-btn {
    border: none;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 15px;
    transition: all 0.2s ease;
}
.copy-hash-btn:hover {
    color: #3b82f6;
}
