/* Inherits basic styles from professional-tools.css */

.input-section {
    margin-bottom: 30px;
}

.section-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #334155;
    font-size: 1.1em;
}

.hash-group {
    margin-bottom: 20px;
}

.hash-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #475569;
    font-size: 0.95em;
}

.input-with-copy {
    display: flex;
    gap: 10px;
}

.input-with-copy input {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid #dfe6ed;
    border-radius: 6px;
    font-family: 'Consolas', monospace;
    color: #2c3338;
    background: #f8fafc;
    height: 40px;
    /* Match button height */
}

.input-with-copy input:focus {
    border-color: var(--ast-global-color-0, #0274be);
    outline: none;
    box-shadow: 0 0 0 1px var(--ast-global-color-0, #0274be);
}

.grid-outputs {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    /* 2 column layout for hashes if screen is wide enough */
    /* But hashes are long, so full width stacking is usually better for readability */
    /* Keeping stacked for now unless requested otherwise */
}