/* https://www.taggmaiwald.com/layout-tools.css */
/* TOOL PAGE LAYOUT */
/* collapse for narrow viewports */
/* Page header spacing */
.tool-header {
    margin-bottom: 2rem;
}

/* Form layout */
.hash-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hash-form label {
    font-weight: 600;
}

.hash-form input[type="text"],
.hash-form input[type="password"] {
    padding: 0.5rem;
    width: 16rem;
    max-width: 100%;
}

.hash-form button {
    padding: 0.6rem 1.2rem;
}

/* Output box */
#output {
    width: 100%;
    height: 2rem;
    margin-top: 1rem;
    padding: 0.75rem;
    font-family: monospace;
}

.output-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.copy-btn {
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
}

/* Section titles */
.section h2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Pretty code blocks inside callouts */
.callout-manila pre,
.callout-manila code {
    background: transparent;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Reduce ugly wide callout area */
.callout-manila {
    border-radius: 6px;
}

/* Example block spacing */
.example-block {
    margin-bottom: 2rem;
}
