.input-section {
    margin-bottom: 2rem;
}
.input-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}
.hash-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s ease;
}
.hash-input:focus {
    outline: none;
    border-color: var(--primary-color);
}
.hash-results {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.hash-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}
.hash-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.hash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.hash-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}
.btn-copy {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-copy:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}
.hash-output {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    word-break: break-all;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 6px;
    color: var(--text-primary);
    line-height: 1.6;
}
