/* ========================================
   Medtour Area Restrita - CSS Principal
   ======================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* PALETA DE CORES */
    --asm-primary-color: #CC191C;
    --asm-secondary-color: #3E3E3E;
    --asm-tertiary-color: #6D6D6D;
    --asm-focus-background-color: #FAFAFA;
    --asm-background-color: #F1F1F1;
    --asm-custom-text-color: #B5B5B5;
}

/* Esconde barra de admin para corretores */
body.corretor-role #wpadminbar {
    display: none !important;
}

body.corretor-role {
    margin-top: 0 !important;
}

.asm-body {
    background: var(--asm-background-color);
    color: var(--asm-tertiary-color);
    line-height: 1.6;
}

.asm-wrapper {
    min-height: 100vh;
    background-color: #f5f5f5;
}

.asm-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}

.asm-wrapper-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: row;
}

/* ========================================
   Navegação
   ======================================== */
.asm-navigation {
    background: #fff;
    color: black;
    padding: 0;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

.asm-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.asm-nav-brand a {
    color: black;
    text-decoration: none;
}

.asm-nav-brand h2 {
    margin: 0;
    font-size: 24px;
}

.asm-nav-menu {
    flex: 1;
    margin: 0 20px;
}

.asm-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.asm-nav-list li {
    border: solid var(--asm-background-color) 2px;
    border-radius: 15px;
    background-color: var(--asm-background-color);
    transition: all 0.3s;
}

.asm-nav-list li a {
    color: var(--asm-secondary-color);
    text-decoration: none;
    padding: 8px 15px;
    display: block;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
}

.asm-nav-list li:hover {
    border: solid var(--asm-primary-color) 2px;
    border-radius: 15px;
}

.asm-nav-list li.active {
    border: solid var(--asm-primary-color) 2px;
    border-radius: 15px;
    background: white;
}

.asm-nav-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.asm-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.asm-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.asm-user-avatar-big {
    max-width: 200px !important;
    height: 200px !important;
    border-radius: 0;
    object-fit: cover;
}

.asm-user-name {
    font-weight: 500;
}

/* ========================================
   Autenticação (Login/Registro)
   ======================================== */
.asm-auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    padding: 20px;
}

.asm-auth-container {
    width: 100%;
    max-width: 500px;
}

.asm-auth-container-dual {
    width: 100%;
    max-width: 1200px;
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: start;
}

.asm-auth-box {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.asm-auth-box.asm-auth-box-left.asm-login-box {
    padding: 54px 60px;
    box-shadow: 0px 8px 17px #c3c3c347;
    border-radius: 53px;
}

.asm-auth-box.asm-auth-box-right.asm-register-box {
    border-radius: 53px;
    padding: 54px 25px;
    box-shadow: none;
}

.asm-register-box .scroll-box {
    overflow-y: scroll;
    max-height: 700px;
    padding: 0px 28px
}

.asm-auth-box-left,
.asm-auth-box-right {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-height: 85vh;
    overflow-y: auto;
}

.asm-auth-box-right::-webkit-scrollbar {
    width: 8px;
}

.asm-auth-box-right::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.asm-auth-box-right::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.asm-auth-box-right::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.asm-auth-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 0;
}

.asm-auth-divider::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%);
}

.asm-auth-divider span {
    background: white;
    color: #667eea;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.card-ctn {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.asm-auth-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.asm-auth-header.top {
    margin-top: 25px;
}

.asm-auth-header h4 {
    color: var(--asm-secondary-color);
    font-size: 36px;
    font-weight: 400;
}

.asm-auth-header h4 span {
    font-weight: 700;
}

.asm-auth-header.login {
    border-bottom: solid 2px var(--asm-background-color);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

#register-form {
    margin-top: 20px;
}

.asm-auth-header h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 0px;
    color: #3E3E3E;
    text-transform: uppercase;
}

.asm-auth-header p {
    color: #7f8c8d;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #3E3E3E;
}

.asm-auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
}

.asm-auth-footer a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.asm-auth-footer a:hover {
    text-decoration: underline;
}

/* ========================================
   Formulários
   ======================================== */
.asm-form {
    width: 100%;
}

.asm-form-group input[type="text"],
input[type="password"],
input[type="email"],
select {
    border-radius: 43px !important;
    background-color: var(--asm-background-color) !important;
    padding: 9px 27px !important;
    color: var(--asm-tertiary-color) !important;
}

.asm-form-group input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus {
    border-radius: 43px !important;
    background-color: var(--asm-focus-background-color) !important;
    padding: 9px 27px !important;
    color: var(--asm-tertiary-color) !important;
    border-color: var(--asm-tertiary-color) !important;
}

.asm-form-group label {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--asm-tertiary-color);
    margin-bottom: 10px;
}

.asm-form-control {
    width: 100% !important;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.3s;
    margin: 0 !important;
}

.asm-form-control:focus {
    outline: none;
    border-color: #3498db;
}

.asm-form-control::placeholder {
    color: #bdc3c7;
}

textarea.asm-form-control {
    resize: vertical;
    font-family: inherit;
}

.asm-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.asm-col-6 {
    flex: 1;
}

.asm-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0 !important;
    font-size: 18px;
    font-weight: 400;
    color: var(--asm-tertiary-color);
}

.asm-checkbox span {
    font-size: 18px;
    font-weight: 400;
    color: var(--asm-tertiary-color);
}

.asm-checkbox input[type="checkbox"] {
    margin-right: 8px;
}

/* Checkbox custom */

/* estilo do label */
.asm-checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--gap);
    cursor: pointer;
    user-select: none;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    font-size: 14px;
    color: #111;
}

.asm-checkbox span {
    display: flex;
    gap: 10px;
}

/* esconde o checkbox padrão */
.asm-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* caixa do checkbox */
.asm-checkbox span::before {
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    border: 2px solid var(--asm-tertiary-color);
    border-radius: 4px;
    background: #fff;
    box-sizing: border-box;
    vertical-align: middle;
    transition: border-color .16s ease, box-shadow .16s ease;
}

/* quadrado accent interno */
.asm-checkbox span::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 8px;
    transform: translateY(-50%) scale(0);
    width: 11px;
    height: 11px;
    background: var(--asm-primary-color);
    border-radius: 3px;
    opacity: 0;
    transition: transform .14s cubic-bezier(.2, .9, .3, 1), opacity .14s;
}

/* quando marcado */
/* .asm-checkbox input[type="checkbox"]:checked+span::before {
    border-color: var(--asm-tertiary-color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
} */

.asm-checkbox input[type="checkbox"]:checked+span::after {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

/* desabilitado */
.asm-checkbox input[type="checkbox"]:disabled+span {
    opacity: 0.5;
    cursor: not-allowed;
}

.asm-form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.asm-form-section:last-child {
    border-bottom: none;
}

.asm-form-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.asm-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.asm-form-group small {
    display: block;
    margin-top: 5px;
    color: #7f8c8d;
    font-size: 13px;
}

.asm-form-section-title {
    font-size: 20px;
    color: var(--asm-secondary-color);
    margin: 25px 0 15px 0;
    padding-bottom: 0px;
    border-bottom: 2px solid var(--asm-background-color);
    font-weight: 700;
    padding-bottom: 5px;
}

.asm-form-section-title:first-of-type {
    margin-top: 0;
}

.asm-col-4 {
    flex: 0 0 33.333%;
}

.asm-col-8 {
    flex: 0 0 66.666%;
}

select.asm-form-control {
    background-color: white;
    cursor: pointer;
}

select.asm-form-control:focus {
    outline: none;
    border-color: var(--asm-tertiary-color);
    background-color: var(--asm-focus-background-color) !important;
}

/* ========================================
   Botões
   ========================================== */
.asm-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    text-align: center;
}

.asm-btn-primary {
    background-color: transparent !important;
    color: var(--asm-secondary-color) !important;
    border: solid 2px var(--asm-primary-color) !important;
    border-radius: 18px !important;
    box-shadow: none !important;
}

.asm-btn-primary:active {
    background-color: var(--asm-primary-color) !important;
    color: var(--asm-focus-background-color) !important;
}

.asm-btn-primary:hover {
    background: var(--asm-primary-color) !important;
    color: var(--asm-focus-background-color) !important;
}

.asm-btn-secondary {
    background: #95a5a6;
    color: white;
}

.asm-btn-secondary:hover {
    background: #7f8c8d;
}

.asm-btn-success {
    background: #27ae60;
    color: white;
}

.asm-btn-success:hover {
    background: #229954;
}

.asm-btn-danger {
    background: #e74c3c;
    color: white;
}

.asm-btn-danger:hover {
    background: #c0392b;
}

.asm-btn-block {
    width: calc(100% - 48px);
    display: block;
}

.asm-btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* ========================================
   Badges
   ======================================== */
.asm-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.asm-badge-admin {
    background: #9b59b6;
    color: white;
}

.asm-badge-corretor {
    background: #3498db;
    color: white;
}

.asm-badge-default {
    background: #95a5a6;
    color: white;
}

.asm-badge-warning {
    background: #f39c12;
    color: white;
}

.asm-badge-success {
    background: #27ae60;
    color: white;
}

.asm-badge-danger {
    background: #e74c3c;
    color: white;
}

/* ========================================
   Alertas
   ======================================== */
.asm-alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.asm-alert-success {
    background: #d5f4e6;
    color: #155724;
    border-left: 4px solid #27ae60;
}

.asm-alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #e74c3c;
}

.asm-alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #3498db;
}

/* ========================================
   Dashboard
   ======================================== */
.asm-dashboard {
    /* padding: 40px 0; */
    width: 70%;
    background: #fff;
}

.asm-dashboard-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: solid 2px var(--asm-background-color);
    width: 100%;
}

.asm-dashboard-header h1 {
    font-size: 36px;
    color: var(--asm-secondary-color);
    margin-bottom: 10px;
}

.asm-container-dashboard {
    display: flex;
    flex-direction: row;
    padding: 25px;
    gap: 60px;
}

.profile-left-ctn {
    width: 100%;
}

.asm-comunicados-list {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.asm-comunicados-header h2 {
    margin: 0;
    font-size: 22px;
    color: var(--asm-secondary-color);
}

.asm-comunicados-header p {
    margin: 6px 0 16px;
    color: var(--asm-tertiary-color);
}

.asm-comunicados-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.asm-comunicados-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid #ececec;
}

.asm-comunicados-list li:first-child {
    border-top: 0;
}

.asm-comunicados-list a {
    color: var(--asm-secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.asm-comunicados-list a:hover {
    color: var(--asm-primary-color);
}

.asm-comunicados-list li span {
    color: #8f8f8f;
    font-size: 14px;
    white-space: nowrap;
}

.asm-comunicados-empty {
    color: var(--asm-tertiary-color);
    margin: 0;
}

.asm-section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d9d9d9 15%, #d9d9d9 85%, transparent 100%);
    margin: 16px 0 20px;
}

.asm-comunicado-detail {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.asm-comunicado-back {
    color: var(--asm-tertiary-color);
    text-decoration: none;
    font-weight: 500;
}

.asm-comunicado-back:hover {
    color: var(--asm-primary-color);
}

.asm-comunicado-detail h1 {
    margin: 14px 0 10px;
}

.asm-comunicado-date {
    color: #8f8f8f;
    margin-bottom: 24px;
}

.asm-comunicado-content {
    color: var(--asm-secondary-color);
    line-height: 1.7;
}

.profile-right-ctn {
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
}

.form-toggle-button {
    text-decoration: underline !important;
    color: var(--asm-tertiary-color) !important;
    font-weight: 400;
    font-size: 16px;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: 20px;
}

.asm-profile-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.asm-profile-info-line {
    display: flex;
    flex-direction: row;
    color: #B5B5B5;
    gap: 5px;
    font-size: 18px;
}

.asm-profile-info-line p {
    margin: 0;
    font-weight: 400;
}

.asm-profile-info-line label {
    font-weight: 600;
    margin: 0;
}

.asm-subtitle {
    font-size: 18px;
    color: #7f8c8d;
}

.asm-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.asm-stat-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
}

.asm-stat-icon {
    font-size: 48px;
}

.asm-stat-content h3 {
    font-size: 32px;
    color: #2c3e50;
    margin: 0;
}

.asm-stat-content p {
    color: #7f8c8d;
    margin: 0;
}

.asm-dashboard-actions {
    margin-bottom: 40px;
}

.asm-dashboard-actions h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.asm-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.asm-action-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.asm-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.asm-action-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.asm-action-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.asm-action-card p {
    color: #7f8c8d;
    margin: 0;
}

.asm-dashboard-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.asm-dashboard-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* ========================================
   Perfil
   ======================================== */
.asm-profile {
    width: 70%;
    background: #fff;
}

.asm-page-header {
    margin-bottom: 30px;
}

.asm-page-header h1 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.asm-page-header p {
    color: #7f8c8d;
}

.asm-profile-content {
    display: flex;
    flex-direction: column;
}

.asm-profile-sidebar {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: fit-content;
}

.asm-profile-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.asm-profile-avatar-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #ecf0f1;
}

.asm-profile-avatar-section h3 {
    margin: 10px 0;
    color: #2c3e50;
}

.asm-profile-avatar-section p {
    color: #7f8c8d;
    font-size: 14px;
}

.asm-profile-main {
    background: white;
    padding: 30px;
}

.asm-text-muted {
    color: #7f8c8d;
    font-size: 14px;
}

.asm-profile-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.asm-profile-info-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.asm-profile-info-card label {
    display: block;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.asm-profile-info-card p {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.asm-profile-edit-form {
    border-top: 2px solid #e0e0e0;
}

.asm-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.asm-alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.asm-alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   Manuais
   ======================================== */
.asm-manuals {
    width: 70%;
}

.asm-manuals-page {
    display: flex;
    flex-direction: row;
    background: #fff;
    gap: 25px;
    padding: 25px
}

.asm-manuals-header {
    border-bottom: solid 2px var(--asm-background-color);
    padding-bottom: 10px;
    margin-top: 20px;
}

.asm-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.asm-upload-form,
.asm-feedback-form {
    margin-bottom: 30px;
}

.asm-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.asm-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.asm-manuals-grid {
    display: grid;
    gap: 20px;
}

.asm-manual-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
}

.asm-manual-icon {
    font-size: 48px;
}

.asm-manual-content h3 {
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.asm-manual-content p {
    color: #7f8c8d;
    margin: 0 0 10px 0;
}

.asm-manual-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #95a5a6;
}

.asm-manual-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ========================================
   Feedback
   ======================================== */
.asm-feedback-page {
    padding: 40px 0;
    display: flex;
    flex-direction: row;
    background: #fff;
}

.asm-feedback-page .asm-content h2 {
    color: env(--asm-secondary-color);
    font-size: 36px;
    font-weight: 700;
}

.asm-feedbacks-section {
    background: white;
    /* padding: 30px; */
    /* border-radius: 10px; */
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
}

.asm-feedbacks-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.asm-feedbacks-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.asm-feedback-card {
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    padding: 20px;
}

.asm-feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.asm-feedback-header h3 {
    color: #2c3e50;
    margin: 0;
}

.asm-feedback-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #95a5a6;
    margin-top: 5px;
}

.asm-feedback-body p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.asm-feedback-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ecf0f1;
}

.asm-feedback-item {
    padding: 15px;
    border-left: 3px solid #3498db;
    background: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 5px;
}

.asm-feedback-item strong {
    color: #2c3e50;
}

/* ========================================
   Estados Vazios
   ======================================== */
.asm-no-data {
    text-align: center;
    padding: 60px 20px;
    color: #95a5a6;
}

.asm-no-data-icon {
    font-size: 72px;
    margin-bottom: 20px;
}

.asm-no-data h3 {
    color: #7f8c8d;
    margin-bottom: 10px;
}

.asm-no-data p {
    color: #95a5a6;
}

/* ========================================
   Responsividade
   ======================================== */
@media (max-width: 768px) {
    .asm-nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .asm-nav-menu {
        width: 100%;
        margin: 0;
    }

    .asm-nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .asm-nav-user {
        width: 100%;
        justify-content: center;
    }

    .asm-profile-content {
        grid-template-columns: 1fr;
    }

    .asm-manual-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .asm-manual-actions {
        flex-direction: row;
        justify-content: center;
    }

    .asm-form-row {
        flex-direction: column;
    }

    .asm-col-4,
    .asm-col-6,
    .asm-col-8 {
        flex: 1 1 100%;
    }

    .asm-page-header {
        flex-direction: column;
    }

    .asm-dashboard-header h1 {
        font-size: 28px;
    }

    .asm-auth-box.asm-auth-box-left.asm-login-box {
        padding: 54px 60px;
        box-shadow: 0px 8px 17px #c3c3c347;
        border-radius: 53px;
    }

    .asm-auth-box.asm-auth-box-right.asm-register-box {
        padding: 54px 60px;
        /* box-shadow: 0px 8px 17px #c3c3c347; */
        border-radius: 53px;
    }

    /* Layout dual fica vertical no mobile */
    .asm-auth-container-dual {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .asm-auth-divider::before {
        width: 100%;
        height: 2px;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
    }

    .asm-auth-box-left,
    .asm-auth-box-right {
        padding: 30px 20px;
    }
}

/* ========================================
   Dúvidas - Novo Layout
   ======================================== */
.asm-feedback-form-wrapper {
    max-width: 800px;
    margin: 30px auto;
}

.asm-feedback-form-section .asm-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.asm-feedback-form-section .asm-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.asm-feedback-form-section .asm-form-group textarea {
    border-radius: 43px !important;
    background-color: var(--asm-background-color) !important;
    padding: 9px 27px !important;
    color: var(--asm-tertiary-color) !important;
}

.asm-feedback-form-section .asm-form-group textarea:focus {
    border-radius: 43px !important;
    background-color: var(--asm-focus-background-color) !important;
    padding: 9px 27px !important;
    color: var(--asm-tertiary-color) !important;
    border-color: var(--asm-tertiary-color) !important;
}

.asm-feedback-form-section {
    width: 100%;
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.asm-feedback-form-section {
    background: white;
    /* padding: 40px; */
    /* border-radius: 10px; */
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
}

.asm-page-description {
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 16px;
}

.asm-feedback-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.asm-feedback-list-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.asm-feedback-form-section h3,
.asm-feedback-list-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

.asm-feedback-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.asm-feedback-list::-webkit-scrollbar {
    width: 6px;
}

.asm-feedback-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.asm-feedback-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.asm-feedback-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.asm-feedback-item {
    padding: 15px;
    border-left: 4px solid #3498db;
    background: #f8f9fa;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.asm-feedback-item:hover {
    border-left-color: #2980b9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.asm-feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.asm-feedback-header h4 {
    color: #2c3e50;
    font-size: 16px;
    margin: 0;
    flex: 1;
}

.asm-feedback-date {
    font-size: 12px;
    color: #95a5a6;
    white-space: nowrap;
    margin-left: 10px;
}

.asm-feedback-content {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.asm-feedback-content p {
    margin: 5px 0;
}

.asm-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #95a5a6;
}

.asm-empty-state p {
    margin: 10px 0;
}

.asm-help-text {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #7f8c8d;
}

/* Responsivo - Dúvidas */
@media (max-width: 992px) {
    .asm-feedback-container {
        grid-template-columns: 1fr;
    }

    .asm-feedback-list {
        max-height: 400px;
    }

    .asm-feedback-form-wrapper {
        margin: 20px auto;
    }

    .asm-feedback-form-section {
        padding: 30px;
    }
}

@media (max-width: 576px) {

    .asm-feedback-form-section,
    .asm-feedback-list-section {
        padding: 20px;
    }

    .asm-feedback-item {
        padding: 12px;
    }

    .asm-feedback-header {
        flex-direction: column;
    }

    .asm-feedback-date {
        margin-left: 0;
        margin-top: 5px;
    }
}

/* ========================================
   Manuais - Categorias e Listagem
   ======================================== */

/* Grid de Categorias */
.asm-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.asm-categories-flex {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 800px;
}

.asm-category-card {
    background: white;
    border-radius: 53px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none !important;
    color: inherit;
    display: flex;
    flex-direction: column;
    width: 220px;
    max-height: 220px;
    box-shadow: 0px 8px 17px 0px #c3c3c34d;
}

.asm-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.asm-category-image {
    width: 100%;
    height: 150px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asm-category-image img {
    width: 100%;
    height: 100%;
    max-height: 160px;
    max-width: 300px;
    object-fit: cover;
}

.asm-category-placeholder {
    font-size: 80px;
    color: #95a5a6;
}

.asm-category-content {
    padding: 10px 10px 0px 10px;
    text-align: center;
}

.asm-category-content h3 {
    margin: 0 0 10px 0;
    color: var(--asm-secondary-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    min-height: 50px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

.asm-category-count {
    margin: 0;
    color: #7f8c8d;
    font-size: 14px;
}

/* Header da Categoria */
.asm-category-header {
    margin-bottom: 20px;
}

.asm-back-link {
    display: inline-block;
    color: var(--asm-tertiary-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.asm-back-link:hover {
    color: var(--asm-tertiary-color);
    text-decoration: none;
}

.asm-category-banner {
    width: 100%;
    max-width: 120px;
    margin: 0 auto 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.asm-category-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.asm-category-header h2 {
    text-align: center;
    margin: 20px 0;
    color: #2c3e50;
    font-size: 32px;
    font-weight: 600;
}

.asm-category-description {
    color: #7f8c8d;
    margin-top: 10px;
}

/* Lista de Manuais */

.asm-manual-main-ctn {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.asm-manual-left-ctn {
    width: 100%;
}

.asm-manual-left-ctn h2 {
    color: var(--asm-secondary-color);
    border-bottom: solid 1px #D9D9D9;
    padding-bottom: 15px;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.asm-manual-right-ctn {
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.asm-manuals-list {
    display: flex;
    flex-direction: column;
}

.asm-manual-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
}

.asm-manual-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.asm-manual-icon {
    font-size: 48px;
}

.asm-manual-info h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 18px;
}

.asm-manual-link {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.asm-manual-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.asm-manual-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #95a5a6;
}

.asm-manual-action {
    display: flex;
    align-items: center;
}

.asm-no-file {
    color: #e74c3c;
    font-size: 14px;
    font-style: italic;
}

.d-flex-row {
    display: flex;
    flex-direction: row;
}

.space-between {
    justify-content: space-between;
}

.space-evenly {
    justify-content: space-evenly;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

/* Responsivo - Manuais */
@media (max-width: 768px) {
    .asm-categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }

    .asm-category-image {
        height: 150px;
    }

    .asm-category-banner {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .asm-category-header h2 {
        font-size: 24px;
    }

    .asm-manual-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }

    .asm-manual-icon {
        font-size: 36px;
    }

    .asm-manual-meta {
        flex-direction: column;
        gap: 5px;
    }

    .asm-manual-action {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .asm-categories-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Acordeão de Manuais
   ======================================== */
.asm-manuals-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.asm-accordion-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.asm-accordion-header {
    width: 100%;
    background: #f8f9fa;
    border: none;
    padding: 15px 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
    text-align: left;
}

.asm-accordion-header:hover {
    background: #e9ecef;
}

.asm-accordion-item.active .asm-accordion-header {
    background: #3498db;
    color: white;
}

.asm-accordion-icon {
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s ease;
    display: inline-block;
}

.asm-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.asm-accordion-content .asm-manuals-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.asm-manual-list-item {
    border-bottom: 1px solid #D9D9D9;
    max-width: 60%;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.asm-manual-list-item:last-child {
    border-bottom: none;
}

.asm-manual-list-item a {
    color: var(--asm-custom-text-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.asm-manual-list-item a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.asm-manual-list-item span {
    color: #7f8c8d;
    font-size: 14px;
}

/* Responsivo - Acordeão */
@media (max-width: 768px) {
    .asm-accordion-header {
        padding: 15px;
        font-size: 16px;
    }

    .asm-manual-list-item {
        padding: 12px 15px;
    }

    .asm-manual-list-item a,
    .asm-manual-list-item span {
        font-size: 14px;
    }
}

/* ========================================
   Customização de Scrollbar do Plugin
   ======================================== */
.asm-wrapper,
.asm-container,
.asm-wrapper-container,
.asm-dashboard,
.asm-profile,
.asm-manuals,
.asm-feedback-page,
.asm-manuals-page,
.asm-auth-box-right,
.asm-feedback-list,
.asm-register-box .scroll-box {
    --sb-track-color: #f1f1f1;
    --sb-thumb-color: #6d6d6d;
    --sb-size: 9px;
}

.asm-wrapper::-webkit-scrollbar,
.asm-container::-webkit-scrollbar,
.asm-wrapper-container::-webkit-scrollbar,
.asm-dashboard::-webkit-scrollbar,
.asm-profile::-webkit-scrollbar,
.asm-manuals::-webkit-scrollbar,
.asm-feedback-page::-webkit-scrollbar,
.asm-manuals-page::-webkit-scrollbar,
.asm-auth-box-right::-webkit-scrollbar,
.asm-feedback-list::-webkit-scrollbar,
.asm-register-box .scroll-box::-webkit-scrollbar {
    width: var(--sb-size);
}

.asm-wrapper::-webkit-scrollbar-track,
.asm-container::-webkit-scrollbar-track,
.asm-wrapper-container::-webkit-scrollbar-track,
.asm-dashboard::-webkit-scrollbar-track,
.asm-profile::-webkit-scrollbar-track,
.asm-manuals::-webkit-scrollbar-track,
.asm-feedback-page::-webkit-scrollbar-track,
.asm-manuals-page::-webkit-scrollbar-track,
.asm-auth-box-right::-webkit-scrollbar-track,
.asm-feedback-list::-webkit-scrollbar-track,
.asm-register-box .scroll-box::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 6px;
}

.asm-wrapper::-webkit-scrollbar-thumb,
.asm-container::-webkit-scrollbar-thumb,
.asm-wrapper-container::-webkit-scrollbar-thumb,
.asm-dashboard::-webkit-scrollbar-thumb,
.asm-profile::-webkit-scrollbar-thumb,
.asm-manuals::-webkit-scrollbar-thumb,
.asm-feedback-page::-webkit-scrollbar-thumb,
.asm-manuals-page::-webkit-scrollbar-thumb,
.asm-auth-box-right::-webkit-scrollbar-thumb,
.asm-feedback-list::-webkit-scrollbar-thumb,
.asm-register-box .scroll-box::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 6px;
}

/* Suporte para navegadores não-webkit */
@supports not selector(::-webkit-scrollbar) {

    .asm-wrapper,
    .asm-container,
    .asm-wrapper-container,
    .asm-dashboard,
    .asm-profile,
    .asm-manuals,
    .asm-feedback-page,
    .asm-manuals-page,
    .asm-auth-box-right,
    .asm-feedback-list,
    .asm-register-box .scroll-box {
        scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
}

.bold {
    font-weight: bold;
}

/* ========================================
   Quiz
   ======================================== */
.asm-quiz-page {
    padding: 32px;
}

.asm-quiz-shell {
    width: 100%;
}

.asm-quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.asm-quiz-header-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.asm-quiz-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.asm-quiz-badge.is-default {
    background: rgba(204, 25, 28, 0.12);
    color: var(--asm-primary-color);
}

.asm-quiz-badge.is-random {
    background: rgba(62, 62, 62, 0.08);
    color: var(--asm-secondary-color);
}

.asm-quiz-refresh-link {
    color: var(--asm-primary-color);
    text-decoration: none;
    font-weight: 600;
}

.asm-quiz-card {
    background: #fff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 50px rgba(62, 62, 62, 0.08);
}

.asm-quiz-card-top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(62, 62, 62, 0.08);
}

.asm-quiz-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--asm-primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.asm-quiz-card h2 {
    color: var(--asm-secondary-color);
    font-size: 30px;
    line-height: 1.1;
}

.asm-quiz-support-text {
    max-width: 360px;
    color: var(--asm-tertiary-color);
}

.asm-quiz-questions {
    display: grid;
    gap: 18px;
}

.asm-quiz-question-card {
    border: 1px solid rgba(62, 62, 62, 0.08);
    border-radius: 22px;
    padding: 24px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.asm-quiz-question-card.is-correct {
    border-color: #2e8b57;
    background: rgba(46, 139, 87, 0.05);
}

.asm-quiz-question-card.is-wrong,
.asm-quiz-question-card.is-unanswered {
    border-color: var(--asm-primary-color);
    background: rgba(204, 25, 28, 0.05);
}

.asm-quiz-question-title {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.asm-quiz-question-title span {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--asm-focus-background-color);
    color: var(--asm-primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.asm-quiz-question-title h3 {
    font-size: 22px;
    color: var(--asm-secondary-color);
}

.asm-quiz-options {
    display: grid;
    gap: 12px;
}

.asm-quiz-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(62, 62, 62, 0.08);
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.asm-quiz-option:hover {
    transform: translateY(-1px);
    border-color: rgba(204, 25, 28, 0.3);
}

.asm-quiz-option.is-selected {
    border-color: var(--asm-primary-color);
    background: rgba(204, 25, 28, 0.04);
}

.asm-quiz-option.is-correct {
    border-color: #2e8b57;
    background: rgba(46, 139, 87, 0.1);
}

.asm-quiz-option.is-wrong {
    border-color: var(--asm-primary-color);
    background: rgba(204, 25, 28, 0.12);
}

.asm-quiz-option input {
    accent-color: var(--asm-primary-color);
}

.asm-quiz-option span {
    color: var(--asm-secondary-color);
    font-weight: 500;
}

.asm-quiz-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.asm-quiz-submit,
.asm-quiz-reset {
    border: 0;
    border-radius: 999px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.asm-quiz-submit {
    background: var(--asm-primary-color);
    color: #fff;
}

.asm-quiz-reset {
    background: var(--asm-focus-background-color);
    color: var(--asm-secondary-color);
}

.asm-quiz-result {
    margin-top: 24px;
    padding: 22px 24px;
    border-radius: 22px;
    background: var(--asm-focus-background-color);
}

.asm-quiz-result-score {
    font-size: 22px;
    font-weight: 700;
    color: var(--asm-secondary-color);
    margin-bottom: 8px;
}

.asm-quiz-result-message {
    color: var(--asm-tertiary-color);
}

.asm-quiz-empty-state {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(62, 62, 62, 0.08);
}

.asm-quiz-admin .asm-quiz-questions-list {
    display: grid;
    gap: 20px;
}

.asm-quiz-admin .asm-quiz-question {
    border: 1px solid #dcdcde;
    border-radius: 12px;
    padding: 16px;
    background: #fff;
}

.asm-quiz-admin .asm-quiz-question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.asm-quiz-admin .asm-quiz-answers-list {
    display: grid;
    gap: 10px;
}

.asm-quiz-admin .asm-quiz-answer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

@media (max-width: 991px) {
    .asm-quiz-page {
        padding: 24px 18px;
    }

    .asm-quiz-header,
    .asm-quiz-card-top {
        flex-direction: column;
    }

    .asm-quiz-support-text {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .asm-quiz-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .asm-quiz-question-card {
        padding: 18px;
    }

    .asm-quiz-question-title {
        gap: 12px;
    }

    .asm-quiz-question-title h3 {
        font-size: 18px;
    }

    .asm-quiz-admin .asm-quiz-answer {
        grid-template-columns: 1fr;
    }
}