/* =========================================================
   Terms & Conditions — estilos compartidos (public + accept)
   ========================================================= */

/* public.blade.php */
body {
    background: #f8f9fc;
}

.tc-content {
    line-height: 1.8;
}

.tc-content h1,
.tc-content h2,
.tc-content h3 {
    margin-top: 1.2rem;
}

.file-toggle {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid #e3e6f0;
    border-radius: 4px;
    margin-bottom: 4px;
    background: #fff;
    cursor: pointer;
    user-select: none;
    transition: background .15s;
}

.file-toggle:hover {
    background: #f0f7ff;
}

.file-toggle .toggle-arrow {
    margin-left: auto;
    transition: transform .25s;
    color: #aaa;
}

.file-toggle.open .toggle-arrow {
    transform: rotate(180deg);
}

.pdf-viewer {
    width: 100%;
    height: 600px;
    border: 1px solid #e3e6f0;
    border-radius: 0 0 4px 4px;
    display: none;
    margin-bottom: 12px;
}

.docx-note {
    padding: 10px 14px;
    border: 1px solid #e3e6f0;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background: #fafafa;
    display: none;
    margin-bottom: 12px;
}

/* accept.blade.php */
.toggle-arrow { transition: transform .25s; }
.open .toggle-arrow { transform: rotate(180deg); }

.file-toggle {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid #e3e6f0;
    border-radius: 4px;
    margin-bottom: 4px;
    background: #fff;
    cursor: pointer;
    user-select: none;
    transition: background .15s;
}
.file-toggle:hover { background: #f0f7ff; }
