/* Website: Transcriber/src/app/static/css/tools.css v1.0 */
/* ====== TOOL SECTION ====== */
.tool-section {
    position: relative;
    margin: 2rem auto;
    padding: var(--brand-spacing, 2rem);
    background-color: var(--brand-bg, rgba(255, 255, 255, 0.02));
    border: 1px solid var(--brand-color-container-foreground-light);
    border-radius: var(--brand-border-radius);
    box-shadow: var(--brand-drop-shadow);
    max-width: 75vw;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    z-index: 1;
}

.tool-section::before {
    content: attr(data-section);
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 5rem;
    font-weight: 900;
    color: var(--brand-color-container-foreground-light);
    z-index: 0;
    pointer-events: none;
    font-family: var(--brand-font-title);
    opacity: 0.05;
}

.tool-section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--brand-color-container-foreground-light);
    margin-bottom: 1rem;
}

.tool-section-title {
    font-size: 1.5rem;
    font-family: var(--brand-font-title);
    color: var(--brand-color-primary);
    margin-bottom: 0.25rem;
}

.tool-section-description {
    font-size: 1rem;
    color: var(--brand-color-container-foreground-light);
    font-family: var(--brand-font-body);
    opacity: 0.8;
}

.tool-subsection {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tool-subsection + .tool-subsection {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.tool-subsection-header {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.tool-subsection-title {
    margin: 0;
    font-size: 1.1rem;
    font-family: var(--brand-font-title);
    color: var(--brand-color-primary);
}

.tool-subsection-description {
    margin: 0;
    font-size: 0.95rem;
    color: var(--brand-color-container-foreground-light);
    font-family: var(--brand-font-body);
    opacity: 0.85;
}

.tool-subsection-content {
    position: relative;
    z-index: 2;
}


.example-wrapper {
    text-align: center;
    margin-top: 1rem;
}

.example-note {
    color: var(--brand-color-container-foreground-light);
    margin-bottom: 0.5rem;
}

.example-box {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 2px dashed var(--brand-color-primary, #ccc);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.example-box:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.example-arrow {
    font-size: 2rem;
    color: var(--brand-color-primary, #4CAF50);
    margin-top: 0.5rem;
}


