/* --- Estilos Gerais e da Página Principal (index.html) --- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
    --primary-color: #8B4513; /* Cor primária do conteúdo (marrom) */
    --nav-color: #ff5f44;     /* Cor da navegação (vermelho original) */
    --text-color: #1f2937; 
    --text-color-light: #6b7280; 
    --background-color: #fdfaf6; /* Fundo levemente amarelado/bege */
    --card-background: #ffffff;
    --header-bg-color: #009152; 
}

html {
    background-color: var(--background-color);
    scroll-behavior: smooth;
}

/* --- ESTRUTURA PRINCIPAL CORRIGIDA --- */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    /* Espaçamento para o cabeçalho inicial (AUMENTADO FINAL) */
    padding-top: 300px; 
    padding-bottom: 80px; /* Espaço para a barra de navegação inferior */
}

/* O body das páginas de checkout e admin precisa de um estilo mais simples */
body:not(:has(.main-content-wrapper)) {
    padding-top: 0;
    padding-bottom: 20px;
}

.main-content-wrapper {
    /* Este wrapper agora serve apenas para agrupar o conteúdo, não mais para rolar */
    width: 100%;
}


/* --- INÍCIO: ESTILOS FINAIS PARA O HEADER (REESCRITO E AJUSTADO) --- */
.header-container {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 350px; /* ALTURA AUMENTADA FINAL */
    transition: height 0.4s ease-in-out;
}

/* Div que contém o SVG do "molho" */
.header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    line-height: 0;
    transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 1; /* Camada de trás */
}

.header-decoration svg {
    width: 100%;
    height: 100%; 
    display: block;
}

.logo {
    position: absolute;
    top: 10%; /* POSIÇÃO AJUSTADA PARA DESCER A LOGO */
    left: 50%;
    transform: translateX(-50%);
    height: 120px;
    width: auto;
    object-fit: contain;
    z-index: 2; /* Camada da frente */
    transition: all 0.4s ease-in-out;
    filter: brightness(0) invert(1);
}

/* --- ESTADO DO CABEÇALHO QUANDO ROLADO (REESCRITO) --- */
.header-container.scrolled {
    height: 70px; 
    background-color: var(--header-bg-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container.scrolled .header-decoration {
    transform: translateY(-100%);
    opacity: 0;
}

.header-container.scrolled .logo {
    top: 10px;
    height: 50px;
}
/* --- FIM: ESTILOS FINAIS PARA O HEADER --- */


/* --- REMOVIDO: ESTILOS DAS ABAS DE CATEGORIA --- */
.category-tabs { 
    display: none;
}


.store-status-banner {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.menu-container { 
    padding: 15px; 
    max-width: 800px;
    margin: 0 auto;
}

.category-section {
    display: block;
    padding-top: 20px;
    scroll-margin-top: 80px; 
}

.category-section h2 { 
    font-size: 1.5rem; 
    margin-bottom: 15px; 
}

/* NOVO SEPARADOR DE CATEGORIA */
.category-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 40px 0;
}

.category-separator::before,
.category-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--primary-color);
}

.category-separator:not(:empty)::before {
    margin-right: .25em;
}

.category-separator:not(:empty)::after {
    margin-left: .25em;
}

.chili-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}


.product-card-list { 
    display: flex; 
    background-color: var(--card-background); 
    border-radius: 8px; 
    padding: 15px; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.08); 
    margin-bottom: 15px; 
    gap: 15px; 
    cursor: pointer;
}

.product-list-info { 
    flex: 1; 
}

.product-list-info h3 { 
    margin: 0 0 5px 0; 
}

.product-list-info .description { 
    font-size: 0.9rem; 
    color: var(--text-color-light); 
    margin: 0 0 10px 0; 
}

.product-list-info .price { 
    font-weight: 700; 
    font-size: 1.1rem; 
}

.product-list-image { 
    position: relative; 
    width: 100px; 
    height: 100px;
    flex-shrink: 0;
}

.product-list-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 8px; 
}

.product-list-image .product-actions { 
    position: absolute; 
    bottom: -5px; 
    right: -5px; 
}

.quantity-selector { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background-color: var(--primary-color); 
    border-radius: 25px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); 
    width: 100px; 
    margin: 0 auto; 
}

.product-list-image .quantity-selector { 
    margin: 0; 
}

.quantity-selector button { 
    background: none; 
    border: none; 
    color: white; 
    font-size: 1.5rem; 
    font-weight: 700; 
    cursor: pointer; 
    padding: 5px 15px; 
}

.quantity-selector .quantity { 
    color: white; 
    font-size: 1.1rem; 
    font-weight: 500; 
}

.add-to-cart-btn { 
    position: static; 
    margin: 0 auto; 
    display: block; 
    width: 35px; 
    height: 35px;
    padding: 5px; 
    border-radius: 50%; 
    font-size: 1.5rem; 
    background-color: var(--primary-color); 
    color: white; 
    border: none; 
    cursor: pointer; 
    line-height: 1;
}

.product-list-image .add-to-cart-btn { 
    position: absolute; 
    bottom: -5px; 
    right: -5px; 
}

/* --- INÍCIO: NOVOS ESTILOS DA BARRA DE NAVEGAÇÃO (CORRIGIDO) --- */
.bottom-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--nav-color);
    color: white;
    height: 65px;
    position: fixed; 
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    padding-bottom: env(safe-area-inset-bottom, 0);
    flex-shrink: 0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    flex-grow: 1;
    position: relative;
    transition: color 0.2s ease;
    flex-basis: 0;
}

.nav-item i {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.nav-item:hover, .nav-item.active {
    color: white;
}

.nav-item-central {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100px; 
    height: 100px; 
    text-decoration: none;
    transform: translate(-50%, -45px);
    transition: transform 0.2s ease-out;
}


.nav-item-central:hover {
    transform: translate(-50%, -50px) scale(1.05);
}

/* Estilo para o ícone SVG personalizado */
.custom-nav-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 -2px 4px rgba(0,0,0,0.15));
}

.custom-nav-icon .flame-path {
    fill: var(--nav-color);
    stroke: var(--background-color);
    stroke-width: 8px; 
}

.custom-nav-icon .home-path {
    fill: white;
}


#cart-count { 
    position: absolute; 
    top: -5px; 
    right: 20px;
    background-color: white; 
    color: var(--nav-color);
    border-radius: 50%; 
    width: 20px;
    height: 20px;
    font-size: 0.8rem; 
    font-weight: 700; 
    display: none; 
    align-items: center;
    justify-content: center;
    border: 2px solid var(--nav-color);
}
/* --- FIM: NOVOS ESTILOS DA BARRA DE NAVEGAÇÃO --- */

/* --- ESTILOS DE MODAIS --- */
.modal-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.6); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    z-index: 2000; 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.3s, visibility 0.3s; 
}

.modal-overlay.active { 
    opacity: 1; 
    visibility: visible; 
}

.modal-content { 
    background-color: white; 
    padding: 20px; 
    border-radius: 8px; 
    width: 95%; 
    max-width: 450px; 
    max-height: 90vh; 
    display: flex; 
    flex-direction: column; 
    transform: translateY(20px); 
    transition: transform 0.3s; 
}

.modal-overlay.active .modal-content { 
    transform: translateY(0); 
}

.modal-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border-bottom: 1px solid #e2e8f0; 
    padding-bottom: 10px; 
    margin-bottom: 10px;
}

.modal-header h2 { 
    margin: 0; 
    font-size: 1.2rem;
}

#close-cart-modal-btn, #close-options-modal-btn, #close-coupon-modal-btn, #close-rejection-modal-btn, #close-pix-modal-btn { 
    background: none; 
    border: none; 
    font-size: 1.8rem; 
    cursor: pointer; 
    color: var(--text-color-light); 
}

.cart-items-list { 
    flex-grow: 1; 
    overflow-y: auto; 
}

.cart-item { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    padding-bottom: 15px; 
    margin-bottom: 15px; 
    border-bottom: 1px solid #e5e7eb; 
}

.cart-item:last-child { 
    border-bottom: none; 
}

.cart-item-img { 
    width: 70px; 
    height: 70px; 
    object-fit: cover; 
    border-radius: 8px; 
    flex-shrink: 0; 
}

.cart-item-info { 
    flex-grow: 1; 
}

.cart-item-info p { 
    margin: 0; 
    font-size: 0.9rem;
}

.cart-item-info p:first-child { 
    font-weight: 500; 
    margin-bottom: 4px; 
}

.cart-item .product-actions { 
    flex-shrink: 0; 
}

.cart-item .quantity-selector { 
    width: auto; 
    margin: 0; 
}

.cart-item .quantity-selector button { 
    padding: 5px 12px; 
}

.cart-item-observation {
    font-size: 0.8rem !important;
    color: var(--text-color-light);
    font-style: italic;
    padding-top: 4px;
}

.cart-item-options {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-color-light);
}

.cart-item-options li::before {
    content: '+ ';
}

.cart-total { 
    font-weight: 700; 
    font-size: 1.2rem; 
    text-align: right; 
    margin-top: 20px; 
}

.checkout-button { 
    display: block; 
    width: 100%; 
    padding: 15px; 
    background-color: var(--primary-color); 
    color: white; 
    text-align: center; 
    text-decoration: none; 
    border-radius: 8px; 
    font-size: 1.1rem; 
    font-weight: 700; 
    margin-top: 20px; 
    box-sizing: border-box; 
    border: none;
    cursor: pointer;
}

.checkout-button.disabled { 
    background-color: #ccc; 
    cursor: not-allowed; 
}

#options-modal .modal-body {
    padding: 0 10px;
    flex-grow: 1;
    overflow-y: auto;
}

.modal-item-details {
    text-align: center;
    margin-bottom: 20px;
}
.modal-item-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
}
.modal-item-description {
    font-size: 0.9rem;
    color: var(--text-color-light);
    margin: 0;
    padding: 0 10px;
}


.options-section {
    margin-top: 25px;
    margin-bottom: 15px;
}

.options-section h3, .options-section h4 {
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #f3f4f6;
}

.options-section p {
    font-size: 0.9rem;
    color: var(--text-color-light);
    margin: 0;
}

.option-item {
    display: flex;
    align-items: center;
    padding: 15px 5px;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s;
    flex-wrap: wrap; 
    cursor: pointer;
}

.option-item.selected {
    background-color: #fdf5e6; /* Cor de fundo para item selecionado (bege) */
}
.option-item.selected .custom-selector {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.option-item.selected .custom-selector::after {
    transform: scale(1);
}


.option-item:last-child {
    border-bottom: none;
}

.option-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
}

.option-item-info h4, .option-item-info h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.option-item-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color-light);
}

.custom-selector {
    width: 22px;
    height: 22px;
    border: 2px solid #d1d5db;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    margin-left: 15px;
    flex-shrink: 0;
}

.custom-selector.is-checkbox {
    border-radius: 6px; 
}

.custom-selector::after {
    content: '';
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.2s ease-in-out;
}

.custom-selector.is-checkbox::after {
    content: "✔";
    font-size: 14px;
    color: white;
    line-height: 1;
    border-radius: 0;
    background-color: transparent;
}

#options-modal-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid #e5e7eb;
    background-color: #fff;
    margin: 20px -20px -20px -20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    flex-shrink: 0;
}

#options-modal-footer .checkout-button {
    margin-top: 0;
    flex-grow: 1;
    margin-left: 20px;
}

.quantity-control-modal {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f3f4f6;
    border-radius: 8px;
}

.quantity-control-modal button {
    background: none; 
    border: none; 
    font-size: 1.2rem;
    font-weight: 700;
    padding: 10px 15px;
    cursor: pointer;
}

.quantity-control-modal span {
    font-size: 1.1rem;
    font-weight: 500;
}


/* --- NOVOS ESTILOS PARA O MODAL DE CUPONS --- */
.coupon-items-list {
    flex-grow: 1;
    overflow-y: auto;
}
.coupon-card {
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    background-color: #fdf5e6;
}
.coupon-card h3 {
    margin: 0 0 5px 0;
    color: var(--primary-color);
}
.coupon-card p {
    margin: 0;
    font-weight: 700;
    font-size: 1.2rem;
}
.coupon-card small {
    color: var(--text-color-light);
    font-size: 0.8rem;
}

/* --- NOVOS ESTILOS PARA A PROMOÇÃO DO DIA --- */
#promotion-container {
    padding: 20px 15px;
    background-color: #fdf5e6; 
    border-bottom: 1px solid #eaddc7;
}

.promotion-header h2 {
    margin: 0 0 15px 0;
    text-align: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.promotion-header h2 i {
    margin-right: 8px;
}

.promotion-card {
    border: 2px dashed var(--primary-color);
}

.promotion-pricing {
    margin-top: 10px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-color-light);
    font-size: 0.9rem;
    margin: 0;
}

.promo-price {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
}

/*
====================================================================
    ESTILOS PARA CHECKOUT, ADMIN E OUTRAS PÁGINAS
====================================================================
*/

/* --- ESTILOS DA PÁGINA DE CHECKOUT (checkout.html) --- */
.checkout-container { 
    max-width: 600px; 
    margin: 0 auto; 
    padding: 15px; 
}

.checkout-header { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 20px; 
}

.back-button { 
    font-size: 1.5rem; 
    color: var(--text-color); 
    text-decoration: none; 
}

.checkout-header h1 { 
    font-size: 1.5rem; 
    margin: 0; 
}

.order-summary, #checkout-form { 
    background-color: var(--card-background); 
    padding: 20px; 
    border-radius: 8px; 
    margin-bottom: 20px; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.08); 
}

.order-summary h2, #checkout-form h2 { 
    margin-top: 0; 
    border-bottom: 1px solid #e5e7eb; 
    padding-bottom: 10px; 
    margin-bottom: 20px; 
}

.summary-item-virtual {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}
.summary-item-virtual:last-of-type {
    border-bottom: none;
}
.summary-item-virtual-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.summary-item-virtual-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.summary-item-virtual-details h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 500;
}
.summary-item-virtual-extras {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-color-light);
}
.summary-item-virtual-extras li {
    padding-left: 15px;
    position: relative;
}
.summary-item-virtual-extras li::before {
    content: '+';
    position: absolute;
    left: 0;
}
.summary-item-virtual-observation {
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 5px;
}
.summary-item-virtual-price {
    font-weight: 500;
    font-size: 1rem;
    margin-left: auto;
    padding-left: 10px;
}


.summary-totals {
    text-align: right;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.summary-line {
    margin: 5px 0;
    font-size: 1rem;
}

#summary-discount-line {
    color: #10b981;
}

.delivery-fee-notice {
    color: #ef4444; /* A red color */
    font-weight: bold;
    font-size: 0.9rem;
    margin: 10px 0;
}

.summary-total { 
    font-weight: 700; 
    font-size: 1.2rem; 
    margin-top: 10px; 
}

.form-group { 
    margin-bottom: 15px; 
}

.form-group label { 
    display: block; 
    margin-bottom: 5px; 
    font-weight: 500; 
}

.form-group input, .form-group textarea, #schedule-time-select { 
    width: 100%; 
    padding: 12px; 
    border: 1px solid #d1d5db; 
    border-radius: 8px; 
    font-size: 1rem; 
    box-sizing: border-box; 
    font-family: 'Roboto', sans-serif;
}

.form-group-inline { 
    display: flex; 
    gap: 15px; 
}

.form-group-inline .form-group { 
    flex: 1; 
}

.payment-options { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}

.payment-option { 
    display: flex; 
    align-items: center; 
    padding: 15px; 
    border: 1px solid #d1d5db; 
    border-radius: 8px; 
    cursor: pointer; 
}

.payment-option input[type="radio"]:checked + label {
    color: var(--primary-color);
    font-weight: 700;
}

.payment-option input[type="radio"] { 
    margin-right: 15px; 
}

.payment-option i { 
    margin-right: 10px; 
    color: var(--text-color-light); 
}

.coupon-section button {
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.submit-order-button { 
    width: 100%; 
    padding: 15px; 
    background-color: var(--primary-color); 
    color: white; 
    text-align: center; 
    text-decoration: none; 
    border-radius: 8px; 
    font-size: 1.2rem; 
    font-weight: 700; 
    border: none; 
    cursor: pointer; 
    margin-top: 20px; 
}

.submit-order-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.link-secondary {
    display: inline-block;
    margin-top: 15px;
    color: var(--text-color-light);
    font-size: 0.9rem;
}

/* --- ESTILOS DA PÁGINA DE ADMIN (admin.html) --- */
.admin-container {
    height: 100vh;
    display: none; /* Começa escondido */
    flex-direction: column;
}

.admin-header { 
    padding: 15px; 
    border-bottom: 1px solid #e5e7eb; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-shrink: 0; 
}

.admin-header h1 { 
    margin: 0; 
}

.admin-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-button { 
    background-color: #6b7280;
    color: white; 
    padding: 8px 16px; 
    text-decoration: none; 
    border-radius: 8px; 
    font-weight: 500;
    border: none;
    cursor: pointer;
}
.nav-button.active {
    background-color: var(--primary-color);
}


.kanban-board { 
    display: flex; 
    flex-grow: 1; 
    overflow-x: auto; 
    gap: 15px; 
    padding: 15px; 
    background-color: #e5e7eb; 
}

.kanban-column { 
    background-color: #f3f4f6; 
    border-radius: 8px; 
    min-width: 320px; 
    width: 320px; 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
}

.column-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 10px 15px; 
    cursor: pointer; 
    border-bottom: 1px solid #e5e7eb; 
}

.column-title { 
    margin: 0; 
    font-size: 1.1rem; 
    font-weight: 700; 
}

.toggle-icon { 
    background: none; 
    border: none; 
    font-size: 1rem; 
    cursor: pointer; 
    transition: transform 0.3s; 
}

.kanban-column.collapsed .toggle-icon { 
    transform: rotate(-90deg); 
}

.column-cards { 
    flex-grow: 1; 
    padding: 10px; 
    overflow-y: auto; 
}

.kanban-column.collapsed .column-cards { 
    display: none; 
}

.kanban-card { 
    background-color: var(--card-background); 
    border-radius: 8px; 
    padding: 15px; 
    margin-bottom: 10px; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); 
    border-left: 5px solid; 
}

.kanban-card-info {
    cursor: pointer;
}

.kanban-card h3 { 
    margin: 0 0 5px 0; 
    font-size: 1.5rem; 
}

.kanban-card p { 
    margin: 0; 
    color: var(--text-color-light); 
}

.kanban-card[data-status="novo"] { border-left-color: #3b82f6; }
.kanban-card[data-status="preparando"] { border-left-color: #f59e0b; }
.kanban-card[data-status="pronto"] { border-left-color: #10b981; }
.kanban-card[data-status="finalizado"] { border-left-color: #9ca3af; opacity: 0.8; }

.modal-content-details { 
    background-color: #f9fafb; 
    border-radius: 8px; 
    width: 95%; 
    max-width: 500px; 
    max-height: 90vh; 
    display: flex; 
    flex-direction: column; 
}

.modal-header-details { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px; 
    background-color: white; 
    border-bottom: 1px solid #e5e7eb; 
}

#modal-title-info h2 { 
    font-size: 1.2rem; 
    margin: 0; 
}

#modal-title-info p { 
    font-size: 0.9rem; 
    color: var(--text-color-light); 
    margin: 0; 
}

.modal-body-details { 
    padding: 20px; 
    overflow-y: auto; 
}

.modal-section { 
    background-color: white; 
    padding: 15px; 
    border-radius: 8px; 
    margin-bottom: 15px; 
}

.modal-section h3 { 
    margin-top: 0; 
    border-bottom: 1px solid #e5e7eb; 
    padding-bottom: 10px; 
    margin-bottom: 10px; 
    font-size: 1rem; 
}

.modal-section p { 
    margin: 5px 0; 
}

.modal-section ul { 
    list-style: none;
    padding: 0;
    margin: 0;
}
