/* /Layout/Footer.razor.rz.scp.css */
.app-footer[b-p8tvyouet0] {
    position: fixed;
    bottom: 0;
    left: 250px;
    right: 0;
    background-color: #222;
    color: #fff;
    z-index: 998;
    transition: left 0.3s ease;
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.sidebar-closed .app-footer[b-p8tvyouet0] {
    left: 0;
}

.footer-container[b-p8tvyouet0] {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content[b-p8tvyouet0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright[b-p8tvyouet0] {
    margin: 0;
}

.footer-links[b-p8tvyouet0] {
    display: flex;
    gap: 1.5rem;
}

.footer-links a[b-p8tvyouet0] {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover[b-p8tvyouet0] {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .app-footer[b-p8tvyouet0] {
        left: 0;
    }
    
    .footer-content[b-p8tvyouet0] {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
} 
/* /Layout/Header.razor.rz.scp.css */
.app-header[b-at2gtb0k75] {
    position: fixed;
    top: 0;
    left: 250px;
    right: 0;
    height: 56px;
    background-color: #fff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 999;
    transition: left 0.3s ease;
}

.sidebar-closed .app-header[b-at2gtb0k75] {
    left: 0;
}

.navbar-container[b-at2gtb0k75] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1rem;
}

.menu-toggle[b-at2gtb0k75] {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #374151;
    /*padding: 0.5rem;*/
    cursor: pointer;
}

.navbar-actions[b-at2gtb0k75] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: auto;
}

.profile-btn[b-at2gtb0k75] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    padding: 0;
}

.profile-btn img[b-at2gtb0k75] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.profile-name[b-at2gtb0k75] {
    color: #1f2937;
    font-size: 0.875rem;
    font-weight: 500;
}

.logout-btn[b-at2gtb0k75] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: none;
    border: none;
    color: #ef4444;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
}

.logout-btn:hover[b-at2gtb0k75] {
    background-color: #fee2e2;
    border-radius: 6px;
}

.logout-btn i[b-at2gtb0k75] {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .app-header[b-at2gtb0k75] {
        left: 0;
    }
    
    .profile-name[b-at2gtb0k75] {
        display: none;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-sn9b144k13] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-sn9b144k13] {
    flex: 1;
}

.app-container[b-sn9b144k13] {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f9fafb;
}

.app-main[b-sn9b144k13] {
    margin-left: 250px;
    padding-top: 56px;
    padding-bottom: 60px; /* Espaço para o footer */
    min-height: calc(100vh - 60px);
    transition: margin-left 0.3s ease;
    background-color: #f1f5f9;
}

.sidebar-closed .app-main[b-sn9b144k13] {
    margin-left: 0;
}

.sidebar[b-sn9b144k13] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-sn9b144k13] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-sn9b144k13]  a, .top-row[b-sn9b144k13]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-sn9b144k13]  a:hover, .top-row[b-sn9b144k13]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-sn9b144k13]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-sn9b144k13] {
        justify-content: space-between;
    }

    .top-row[b-sn9b144k13]  a, .top-row[b-sn9b144k13]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-sn9b144k13] {
        flex-direction: row;
    }

    .sidebar[b-sn9b144k13] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-sn9b144k13] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-sn9b144k13]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-sn9b144k13], article[b-sn9b144k13] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}


@media (max-width: 768px) {
    .app-main[b-sn9b144k13] {
        margin-left: 0px;
    }
} 
/* /Layout/Sidebar.razor.rz.scp.css */
.app-sidebar[b-20m6s72ccj] {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background-color: #fff;
    border-right: 1px solid #e5e7eb;
    z-index: 1000;
    transition: transform 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.sidebar-closed .app-sidebar[b-20m6s72ccj] {
    transform: translateX(-100%);
}

.sidebar-logo[b-20m6s72ccj] {
    height: 56px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    background-color: #fff;
}

.sidebar-logo i[b-20m6s72ccj] {
    font-size: 1.5rem;
    color: #6366f1;
    margin-right: 0.5rem;
}

.sidebar-logo-text[b-20m6s72ccj] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.sidebar-logo-text span[b-20m6s72ccj] {
    color: #6366f1;
}

.sidebar-nav-container[b-20m6s72ccj] {
    height: calc(100vh - 56px);
    overflow-y: auto;
    padding-bottom: 60px;
    background-color: #fff;
}

.sidebar-nav[b-20m6s72ccj] {
    padding: 1rem;
}

.nav-section[b-20m6s72ccj] {
    margin-bottom: 1.5rem;
}

.nav-title[b-20m6s72ccj] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 0.5rem;
    margin-bottom: 0.75rem;
}

.nav-items[b-20m6s72ccj] {
    list-style: none;
    padding: 0;
    margin: 0;
}
/* /Pages/Clientes/ClienteForm.razor.rz.scp.css */
/* Items List */
.items-list[b-mumhfigukp] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.item-row[b-mumhfigukp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-bottom: 5px;
}

.item-info[b-mumhfigukp] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.item-actions[b-mumhfigukp] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-actions .btn[b-mumhfigukp] {
    padding: 5px !important;
}
/* /Pages/Clientes/ClienteIndex.razor.rz.scp.css */
/* /Pages/Cobrancas/CobrancaIndex.razor.rz.scp.css */
/* /Pages/Dashboard.razor.rz.scp.css */
/* Card Condensado */
.card-sr[b-300v0mzhj5] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.card-sr:hover[b-300v0mzhj5] {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card-sr.active[b-300v0mzhj5] {
    box-shadow: 0 0 0 2px #3182ce, 0 4px 6px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.card-sr.disabled[b-300v0mzhj5] {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(0.5);
}

.card-sr.disabled:hover[b-300v0mzhj5] {
    transform: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.card-sr.disabled .action-btn[b-300v0mzhj5] {
    pointer-events: none;
    opacity: 0.5;
}

.card-body-sr.compact[b-300v0mzhj5] {
    padding: 1rem;
}

.card-header-sr[b-300v0mzhj5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.user-info[b-300v0mzhj5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-info i[b-300v0mzhj5] {
    font-size: 1.25rem;
    color: #4a5568;
}

.user-info .name[b-300v0mzhj5] {
    font-size: 1rem;
    font-weight: 500;
    color: #2d3748;
}

.counter[b-300v0mzhj5] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.period-number[b-300v0mzhj5] {
    font-size: 1.0rem;
}

.counter .number[b-300v0mzhj5] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1;
}

.counter .label[b-300v0mzhj5] {
    font-size: 0.75rem;
    color: #718096;
}

.card-actions-sr[b-300v0mzhj5] {
    display: flex;
    gap: 0.5rem;
}

.action-btn[b-300v0mzhj5] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn.add[b-300v0mzhj5] {
    background-color: #ebf5ff;
    color: #3182ce;
}

.action-btn.add:hover[b-300v0mzhj5] {
    background-color: #3182ce;
    color: white;
}

.action-btn.close[b-300v0mzhj5] {
    background-color: #fff5f5;
    color: #e53e3e;
}

.action-btn.close:hover[b-300v0mzhj5] {
    background-color: #e53e3e;
    color: white;
}

.action-btn.print[b-300v0mzhj5] {
    background-color: #3182ce;
    color: #fdfdfd;
    max-width: 100px;
}

.action-btn.print:hover[b-300v0mzhj5] {
    background-color: #064580;
    color: white;
}

.action-btn i[b-300v0mzhj5] {
    font-size: 1rem;
}
/* Card Lista de Serviços */
/* Movido para ServicoResumoCard.razor.css */

/* Barra de Data */

.date-bar[b-300v0mzhj5] {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.current-date[b-300v0mzhj5] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.current-date i[b-300v0mzhj5] {
    font-size: 1.5rem;
    color: #3182ce;
}

.current-date .date[b-300v0mzhj5] {
    font-size: 1.125rem;
    font-weight: 500;
    color: #2d3748;
}

/* Removendo estilos não utilizados */
.date-info[b-300v0mzhj5],
.date-info .date[b-300v0mzhj5],
.date-info .day[b-300v0mzhj5] {
    display: none;
}

.date-actions[b-300v0mzhj5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-nav-btn[b-300v0mzhj5] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: white;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s;
}

.date-nav-btn:hover[b-300v0mzhj5] {
    background: #f7fafc;
    color: #2d3748;
    border-color: #cbd5e0;
}

.date-picker-btn[b-300v0mzhj5] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
    height: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: white;
    color: #4a5568;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.date-picker-btn:hover[b-300v0mzhj5] {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.date-picker-btn i[b-300v0mzhj5] {
    color: #3182ce;
}

/* Responsividade */
@media (max-width: 640px) {
    .date-bar[b-300v0mzhj5] {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .current-date[b-300v0mzhj5] {
        width: 100%;
        justify-content: center;
    }

    .date-actions[b-300v0mzhj5] {
        width: 100%;
        justify-content: center;
    }
}

.date-input[b-300v0mzhj5] {
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #4a5568;
    background-color: white;
    cursor: pointer;
    font-size: 0.875rem;
    width: 150px;
}

.date-input:hover[b-300v0mzhj5] {
    border-color: #cbd5e0;
}

.date-input:focus[b-300v0mzhj5] {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 1px #3182ce;
}
/* /Pages/Financeiro/ResumoContabil.razor.rz.scp.css */


.grid-cards-mouths[b-f6spolcr3f] {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

@media (max-width: 1100px) {
    .grid-cards-mouths[b-f6spolcr3f] {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 800px) {
    .grid-cards-mouths[b-f6spolcr3f] {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .grid-cards-mouths[b-f6spolcr3f] {
        grid-template-columns: 1fr;
    }
}

.month-card[b-f6spolcr3f] {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(49,130,206,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s, border 0.2s;
}

.month-card:hover[b-f6spolcr3f] {
    box-shadow: 0 6px 18px rgba(49,130,206,0.13);
    border: 1.5px solid #3182ce;
}

.month-name[b-f6spolcr3f] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3182ce;
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
}

.month-value[b-f6spolcr3f] {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2d3748;
    background: #f1f5f9;
    border-radius: 16px;
    padding: 0.4rem 1.1rem;
    margin-top: 0.2rem;
    box-shadow: 0 1px 2px rgba(49,130,206,0.04);
}

.charts-mouths[b-f6spolcr3f] {
    width: 100%;
    padding: 1.5rem 0.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(49,130,206,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.charts-mouths canvas[b-f6spolcr3f] {
    width: 100% !important;
    max-width: 100% !important;
    height: 220px !important;
    display: block;
}

.date-filter[b-f6spolcr3f]{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* /Pages/OrdemServico/OrdemServicoForm.razor.rz.scp.css */
.value-control[b-y4tmmuzru7] {
    min-width: 150px;
    margin-right: 1rem;
}

.value-control .input-group[b-y4tmmuzru7] {
    height: 38px;
}

.value-control .input-group-text[b-y4tmmuzru7] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.value-control .form-control[b-y4tmmuzru7] {
    text-align: right;
    padding-right: 0.75rem;
}

.value-control .form-control:disabled[b-y4tmmuzru7] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.sc-warning[b-y4tmmuzru7] {
    color: #d50c0c;
}


.btn-address-search[b-y4tmmuzru7] {
    background: #fff;
    color: #888;
    border: 1px solid #e0e0e0;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: none;
}

.btn-address-search:hover[b-y4tmmuzru7], .btn-address-search:focus[b-y4tmmuzru7] {
    background: #f5f5f5;
    color: #555;
    border-color: #bdbdbd;
}

.btn-icon[b-y4tmmuzru7] {
    min-width: 28px;
    min-height: 28px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
/* /Pages/Shared/ClienteFormEmbed.razor.rz.scp.css */
.cliente-form-embed[b-mlct8p3ag7] {
    margin-bottom: 1rem;
}

.section-card[b-mlct8p3ag7] {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.section-header[b-mlct8p3ag7] {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9fafb;
}

.section-title[b-mlct8p3ag7] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.section-title i[b-mlct8p3ag7] {
    color: #6366f1;
    font-size: 1.25rem;
}

.section-content[b-mlct8p3ag7] {
    padding: 1rem;
}

.form-actions[b-mlct8p3ag7] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.tipo-pessoa-box[b-mlct8p3ag7] {
    margin-bottom: 1rem;
}

.documento-field[b-mlct8p3ag7] {
    position: relative;
}

.documento-icon[b-mlct8p3ag7] {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
}

.invalid-feedback[b-mlct8p3ag7] {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
} 
/* /Pages/Shared/EnderecoFormEmbed.razor.rz.scp.css */
.form-footer[b-3qx95taocr]{
    text-align: center;
    margin-top: 5px;
}
/* /Pages/Shared/ModalAdicionarEndereco.razor.rz.scp.css */
/* Base do Modal */
.modal-backdrop[b-ggpm9rn4op] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    animation: fadeIn-b-ggpm9rn4op 0.2s ease-out;
}

.modal-dialog[b-ggpm9rn4op] {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1051;
    /*    height: 600px;*/
    display: flex;
    flex-direction: column;
}

.modal-content[b-ggpm9rn4op] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Cabeçalho */
.modal-header[b-ggpm9rn4op] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.modal-title[b-ggpm9rn4op] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .modal-title i[b-ggpm9rn4op] {
        font-size: 1.25rem;
        color: #3182ce;
    }

/* Corpo do Modal */
.modal-body[b-ggpm9rn4op] {
    padding: 1.5rem 1rem;
    overflow-y: auto;
    flex: 1;
}

/* Campo de Pesquisa */
.search-container[b-ggpm9rn4op] {
    margin-bottom: 1.5rem;
}

.input-group[b-ggpm9rn4op] {
    display: flex;
    width: 100%;
}

.input-group-text[b-ggpm9rn4op] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 6px 0 0 6px;
}

.form-control[b-ggpm9rn4op] {
    flex: 1;
    padding: 0.625rem;
    border: 1px solid #e2e8f0;
    border-radius: 0 6px 6px 0;
    font-size: 0.875rem;
}

    .form-control:focus[b-ggpm9rn4op] {
        outline: none;
        border-color: #e2e8f0;
        box-shadow: none;
    }

/* Lista de Resultados */
.results-container[b-ggpm9rn4op] {
    margin-top: 1rem;
}

.tarefa-switch .form-check .form-check[b-ggpm9rn4op] {
    margin-left: 0 !important;
}

.results-list[b-ggpm9rn4op] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.25rem;
}


/* Estados de Loading e Empty */
.loading-state[b-ggpm9rn4op],
.empty-state[b-ggpm9rn4op] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: #718096;
}

    .loading-state i[b-ggpm9rn4op],
    .empty-state i[b-ggpm9rn4op] {
        font-size: 2rem;
        color: #cbd5e0;
        margin-bottom: 1rem;
    }

/* Footer */
.modal-footer[b-ggpm9rn4op] {
    display: flex;
    justify-content: center;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.btn-secondary[b-ggpm9rn4op] {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
    padding: 0.375rem 2rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
}

    .btn-secondary:hover[b-ggpm9rn4op] {
        background-color: #5c636a;
        border-color: #565e64;
    }

/* Animações */
@keyframes fadeIn-b-ggpm9rn4op {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Estilo para o botão de cadeado */
.lock-toggle[b-ggpm9rn4op] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

.lock-button[b-ggpm9rn4op] {
    font-size: 3rem;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

    .lock-button.locked[b-ggpm9rn4op] {
        color: green;
    }

    .lock-button.unlocked[b-ggpm9rn4op] {
        color: red;
    }

    .lock-button.selected[b-ggpm9rn4op] {
        transform: scale(1.2);
        font-weight: bold;
    }

    .lock-button:hover[b-ggpm9rn4op] {
        transform: scale(1.1);
    }

/* Estilo para os novos botões largos de fechar/reabrir roteiro */
.status-toggle-wide[b-ggpm9rn4op] {
    display: flex;
    gap: 1rem;
    width: 100%;
    margin: 1rem 0;
}

.roteiro-btn[b-ggpm9rn4op] {
    flex: 1 1 0;
    padding: 1.2rem 0;
    font-size: 1.2rem;
    border: none;
    border-radius: 0.5rem;
    background: #f1f5f9;
    color: #222;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

    .roteiro-btn.active[b-ggpm9rn4op] {
        background: #2563eb;
        color: #fff;
        font-weight: bold;
        box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    }

    .roteiro-btn.open[b-ggpm9rn4op] {
        background: #169927;
        color: #fff;
        font-weight: bold;
        box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    }

    .roteiro-btn.closed[b-ggpm9rn4op] {
        background: #f54747;
        color: #fff;
        font-weight: bold;
        box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    }

    .roteiro-btn i[b-ggpm9rn4op] {
        font-size: 1.5rem;
    }

/* Responsividade */
@media (max-width: 768px) {
    .modal-dialog[b-ggpm9rn4op] {
        width: 95%;
        margin: 0.5rem;
    }

    .status-toggle-wide[b-ggpm9rn4op] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .roteiro-btn[b-ggpm9rn4op] {
        width: 100%;
    }
}
/* /Pages/Shared/ModalAdicionarOcorrencia.razor.rz.scp.css */
/* Base do Modal */
.modal-backdrop[b-dariuf11t0] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    animation: fadeIn-b-dariuf11t0 0.2s ease-out;
}

.modal-dialog[b-dariuf11t0] {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1051;
/*    height: 600px;*/
    display: flex;
    flex-direction: column;
}

.modal-content[b-dariuf11t0] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Cabeçalho */
.modal-header[b-dariuf11t0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.modal-title[b-dariuf11t0] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .modal-title i[b-dariuf11t0] {
        font-size: 1.25rem;
        color: #3182ce;
    }

/* Corpo do Modal */
.modal-body[b-dariuf11t0] {
    padding: 1.5rem 1rem;
    overflow-y: auto;
    flex: 1;
}

/* Campo de Pesquisa */
.search-container[b-dariuf11t0] {
    margin-bottom: 1.5rem;
}

.input-group[b-dariuf11t0] {
    display: flex;
    width: 100%;
}

.input-group-text[b-dariuf11t0] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 6px 0 0 6px;
}

.form-control[b-dariuf11t0] {
    flex: 1;
    padding: 0.625rem;
    border: 1px solid #e2e8f0;
    border-radius: 0 6px 6px 0;
    font-size: 0.875rem;
}

    .form-control:focus[b-dariuf11t0] {
        outline: none;
        border-color: #e2e8f0;
        box-shadow: none;
    }

/* Lista de Resultados */
.results-container[b-dariuf11t0] {
    margin-top: 1rem;
}

.tarefa-switch .form-check .form-check[b-dariuf11t0] {
    margin-left: 0 !important;
}

.results-list[b-dariuf11t0] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.25rem;
}


/* Estados de Loading e Empty */
.loading-state[b-dariuf11t0],
.empty-state[b-dariuf11t0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: #718096;
}

    .loading-state i[b-dariuf11t0],
    .empty-state i[b-dariuf11t0] {
        font-size: 2rem;
        color: #cbd5e0;
        margin-bottom: 1rem;
    }

/* Footer */
.modal-footer[b-dariuf11t0] {
    display: flex;
    justify-content: center;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.btn-secondary[b-dariuf11t0] {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
    padding: 0.375rem 2rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
}

    .btn-secondary:hover[b-dariuf11t0] {
        background-color: #5c636a;
        border-color: #565e64;
    }

/* Animações */
@keyframes fadeIn-b-dariuf11t0 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .modal-dialog[b-dariuf11t0] {
        width: 95%;
        margin: 0.5rem;
    }
}
/* /Pages/Shared/ModalAlterarSituacao.razor.rz.scp.css */
.modal-backdrop[b-dd852k5lsh] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    animation: fadeIn-b-dd852k5lsh 0.2s ease-out;
}

.modal-dialog[b-dd852k5lsh] {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1051;
    height: 600px;
    display: flex;
}

.modal-content[b-dd852k5lsh] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Cabeçalho */
.modal-header[b-dd852k5lsh] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.modal-title[b-dd852k5lsh] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-title i[b-dd852k5lsh] {
    font-size: 1.25rem;
    color: #3182ce;
}

/* Corpo do Modal */
.modal-body[b-dd852k5lsh] {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 1rem;
}

/* Lista de Status */
.status-list[b-dd852k5lsh] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem;
}

.status-item[b-dd852k5lsh] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background-color: white;
}

.status-item:hover[b-dd852k5lsh] {
    background-color: #f7fafc;
    border-color: #e2e8f0;
}

.status-item.selected[b-dd852k5lsh] {
    border-color: #3182ce;
    background-color: #ebf8ff;
}

.status-item.selected[b-dd852k5lsh]::before {
    content: '';
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #3182ce;
}

.status-item.selected .status-icon[b-dd852k5lsh] {
    transform: scale(1.05);
}

.status-info[b-dd852k5lsh] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-icon[b-dd852k5lsh] {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.25rem;
}

.status-icon.status-rascunho[b-dd852k5lsh] {
    background-color: #EDF2F7;
    color: #4A5568;
}

.status-icon.status-pendente[b-dd852k5lsh] {
    background-color: #FEFCBF;
    color: #B7791F;
}

.status-icon.status-em-andamento[b-dd852k5lsh] {
    background-color: #E9F6FE;
    color: #2B6CB0;
}

.status-icon.status-concluido[b-dd852k5lsh] {
    background-color: #C6F6D5;
    color: #2F855A;
}

.status-icon.status-cancelado[b-dd852k5lsh] {
    background-color: #FED7D7;
    color: #C53030;
}

.status-details[b-dd852k5lsh] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.status-name[b-dd852k5lsh] {
    font-weight: 600;
    color: #2d3748;
}

.status-description[b-dd852k5lsh] {
    font-size: 0.875rem;
    color: #718096;
}

.status-badge[b-dd852k5lsh] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background-color: #f8fafc;
    border-radius: 9999px;
    width: fit-content;
    font-size: 0.813rem;
    color: #718096;
}

.status-badge i[b-dd852k5lsh] {
    font-size: 1rem;
    color: #3182ce;
}

/* Seção de Justificativa */
.justification-section[b-dd852k5lsh] {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.form-group[b-dd852k5lsh] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-dd852k5lsh] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4a5568;
}

.form-control[b-dd852k5lsh] {
    width: 100%;
    padding: 0.625rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.875rem;
    resize: vertical;
}

.form-control:focus[b-dd852k5lsh] {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 1px #3182ce;
}

.validation-message[b-dd852k5lsh] {
    font-size: 0.813rem;
    color: #e53e3e;
    margin-top: 0.25rem;
}

/* Footer */
.modal-footer[b-dd852k5lsh] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.btn[b-dd852k5lsh] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline-secondary[b-dd852k5lsh] {
    color: #4a5568;
    border: 1px solid #cbd5e0;
    background-color: white;
}

.btn-outline-secondary:hover[b-dd852k5lsh] {
    background-color: #f7fafc;
    border-color: #a0aec0;
}

.btn-primary[b-dd852k5lsh] {
    color: white;
    background-color: #3182ce;
    border: 1px solid #2c5282;
}

.btn-primary:hover[b-dd852k5lsh] {
    background-color: #2c5282;
}

/* Empty State */
.empty-state[b-dd852k5lsh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: #718096;
}

.empty-state i[b-dd852k5lsh] {
    font-size: 2rem;
    color: #cbd5e0;
    margin-bottom: 1rem;
}

/* Animações */
@keyframes fadeIn-b-dd852k5lsh {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsividade */
@media (max-width: 640px) {
    .modal-dialog[b-dd852k5lsh] {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }

    .modal-content[b-dd852k5lsh] {
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
    }

    .status-info[b-dd852k5lsh] {
        flex-direction: column;
        align-items: flex-start;
    }

    .modal-footer[b-dd852k5lsh] {
        flex-direction: column-reverse;
    }

    .modal-footer .btn[b-dd852k5lsh] {
        width: 100%;
        justify-content: center;
    }
} 
/* /Pages/Shared/ModalConfirmacao.razor.rz.scp.css */
/* Base do Modal */
.modal-backdrop[b-ri78eu02dg] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    animation: fadeIn-b-ri78eu02dg 0.2s ease-out;
}

.modal-dialog[b-ri78eu02dg] {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1051;
    /*    height: 600px;*/
    display: flex;
    flex-direction: column;
}

.modal-content[b-ri78eu02dg] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Cabeçalho */
.modal-header[b-ri78eu02dg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.modal-title[b-ri78eu02dg] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .modal-title i[b-ri78eu02dg] {
        font-size: 1.25rem;
        color: #3182ce;
    }

/* Corpo do Modal */
.modal-body[b-ri78eu02dg] {
    padding: 1.5rem 1rem;
    overflow-y: auto;
    flex: 1;
}

/* Campo de Pesquisa */
.search-container[b-ri78eu02dg] {
    margin-bottom: 1.5rem;
}

.input-group[b-ri78eu02dg] {
    display: flex;
    width: 100%;
}

.input-group-text[b-ri78eu02dg] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 6px 0 0 6px;
}

.form-control[b-ri78eu02dg] {
    flex: 1;
    padding: 0.625rem;
    border: 1px solid #e2e8f0;
    border-radius: 0 6px 6px 0;
    font-size: 0.875rem;
}

    .form-control:focus[b-ri78eu02dg] {
        outline: none;
        border-color: #e2e8f0;
        box-shadow: none;
    }

/* Lista de Resultados */
.results-container[b-ri78eu02dg] {
    margin-top: 1rem;
}

.tarefa-switch .form-check .form-check[b-ri78eu02dg] {
    margin-left: 0 !important;
}

.results-list[b-ri78eu02dg] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.25rem;
}


/* Estados de Loading e Empty */
.loading-state[b-ri78eu02dg],
.empty-state[b-ri78eu02dg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: #718096;
}

    .loading-state i[b-ri78eu02dg],
    .empty-state i[b-ri78eu02dg] {
        font-size: 2rem;
        color: #cbd5e0;
        margin-bottom: 1rem;
    }

/* Footer */
.modal-footer[b-ri78eu02dg] {
    display: flex;
    justify-content: center;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.btn-secondary[b-ri78eu02dg] {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
    padding: 0.375rem 2rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
}

    .btn-secondary:hover[b-ri78eu02dg] {
        background-color: #5c636a;
        border-color: #565e64;
    }

/* Animações */
@keyframes fadeIn-b-ri78eu02dg {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .modal-dialog[b-ri78eu02dg] {
        width: 95%;
        margin: 0.5rem;
    }
}
/* /Pages/Shared/ModalControleAgenda.razor.rz.scp.css */
/* Base do Modal */
.modal-backdrop[b-olrf69uluj] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    animation: fadeIn-b-olrf69uluj 0.2s ease-out;
}

.modal-dialog[b-olrf69uluj] {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1051;
/*    height: 600px;*/
    display: flex;
    flex-direction: column;
}

.modal-content[b-olrf69uluj] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Cabeçalho */
.modal-header[b-olrf69uluj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.modal-title[b-olrf69uluj] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .modal-title i[b-olrf69uluj] {
        font-size: 1.25rem;
        color: #3182ce;
    }

/* Corpo do Modal */
.modal-body[b-olrf69uluj] {
    padding: 1.5rem 1rem;
    overflow-y: auto;
    flex: 1;
}

/* Campo de Pesquisa */
.search-container[b-olrf69uluj] {
    margin-bottom: 1.5rem;
}

.input-group[b-olrf69uluj] {
    display: flex;
    width: 100%;
}

.input-group-text[b-olrf69uluj] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 6px 0 0 6px;
}

.form-control[b-olrf69uluj] {
    flex: 1;
    padding: 0.625rem;
    border: 1px solid #e2e8f0;
    border-radius: 0 6px 6px 0;
    font-size: 0.875rem;
}

    .form-control:focus[b-olrf69uluj] {
        outline: none;
        border-color: #e2e8f0;
        box-shadow: none;
    }

/* Lista de Resultados */
.results-container[b-olrf69uluj] {
    margin-top: 1rem;
}

.tarefa-switch .form-check .form-check[b-olrf69uluj] {
    margin-left: 0 !important;
}

.results-list[b-olrf69uluj] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.25rem;
}


/* Estados de Loading e Empty */
.loading-state[b-olrf69uluj],
.empty-state[b-olrf69uluj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: #718096;
}

    .loading-state i[b-olrf69uluj],
    .empty-state i[b-olrf69uluj] {
        font-size: 2rem;
        color: #cbd5e0;
        margin-bottom: 1rem;
    }

/* Footer */
.modal-footer[b-olrf69uluj] {
    display: flex;
    justify-content: center;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.btn-secondary[b-olrf69uluj] {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
    padding: 0.375rem 2rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
}

    .btn-secondary:hover[b-olrf69uluj] {
        background-color: #5c636a;
        border-color: #565e64;
    }

/* Animações */
@keyframes fadeIn-b-olrf69uluj {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Estilo para o botão de cadeado */
.lock-toggle[b-olrf69uluj] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

.lock-button[b-olrf69uluj] {
    font-size: 3rem;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
}

.lock-button.locked[b-olrf69uluj] {
    color: green;
}

.lock-button.unlocked[b-olrf69uluj] {
    color: red;
}

.lock-button.selected[b-olrf69uluj] {
    transform: scale(1.2);
    font-weight: bold;
}

.lock-button:hover[b-olrf69uluj] {
    transform: scale(1.1);
}

/* Estilo para os novos botões largos de fechar/reabrir roteiro */
.status-toggle-wide[b-olrf69uluj] {
    display: flex;
    gap: 1rem;
    width: 100%;
    margin: 1rem 0;
}

.roteiro-btn[b-olrf69uluj] {
    flex: 1 1 0;
    padding: 1.2rem 0;
    font-size: 1.2rem;
    border: none;
    border-radius: 0.5rem;
    background: #f1f5f9;
    color: #222;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.roteiro-btn.active[b-olrf69uluj] {
    background: #2563eb;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
}

.roteiro-btn.open[b-olrf69uluj] {
    background: #169927;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
}

.roteiro-btn.closed[b-olrf69uluj] {
    background: #f54747;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
}

.roteiro-btn i[b-olrf69uluj] {
    font-size: 1.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .modal-dialog[b-olrf69uluj] {
        width: 95%;
        margin: 0.5rem;
    }

    .status-toggle-wide[b-olrf69uluj] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .roteiro-btn[b-olrf69uluj] {
        width: 100%;
    }
}
/* /Pages/Shared/ModalOcorrencias.razor.rz.scp.css */
/* Base do Modal */
.modal-backdrop[b-holut9byyu] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    animation: fadeIn-b-holut9byyu 0.2s ease-out;
}

.modal-dialog[b-holut9byyu] {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1051;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.modal-content[b-holut9byyu] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Cabeçalho */
.modal-header[b-holut9byyu] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.modal-title[b-holut9byyu] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .modal-title i[b-holut9byyu] {
        font-size: 1.25rem;
        color: #3182ce;
    }

/* Corpo do Modal */
.modal-body[b-holut9byyu] {
    padding: 1.5rem 1rem;
    overflow-y: auto;
    flex: 1;
}

/* Campo de Pesquisa */
.search-container[b-holut9byyu] {
    margin-bottom: 1.5rem;
}

.input-group[b-holut9byyu] {
    display: flex;
    width: 100%;
}

.input-group-text[b-holut9byyu] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 6px 0 0 6px;
}

.form-control[b-holut9byyu] {
    flex: 1;
    padding: 0.625rem;
    border: 1px solid #e2e8f0;
    border-radius: 0 6px 6px 0;
    font-size: 0.875rem;
}

    .form-control:focus[b-holut9byyu] {
        outline: none;
        border-color: #e2e8f0;
        box-shadow: none;
    }

/* Lista de Resultados */
.results-container[b-holut9byyu] {
    margin-top: 1rem;
}

.results-list[b-holut9byyu] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.25rem;
}


/* Estados de Loading e Empty */
.loading-state[b-holut9byyu],
.empty-state[b-holut9byyu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: #718096;
}

    .loading-state i[b-holut9byyu],
    .empty-state i[b-holut9byyu] {
        font-size: 2rem;
        color: #cbd5e0;
        margin-bottom: 1rem;
    }

/* Footer */
.modal-footer[b-holut9byyu] {
    display: flex;
    justify-content: center;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.btn-secondary[b-holut9byyu] {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
    padding: 0.375rem 2rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
}

    .btn-secondary:hover[b-holut9byyu] {
        background-color: #5c636a;
        border-color: #565e64;
    }

/* Animações */
@keyframes fadeIn-b-holut9byyu {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .modal-dialog[b-holut9byyu] {
        width: 95%;
        margin: 0.5rem;
    }
}
/* /Pages/Shared/ModalPesquisaCliente.razor.rz.scp.css */
/* Base do Modal */
.modal-backdrop[b-np73rcld8e] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    animation: fadeIn-b-np73rcld8e 0.2s ease-out;
}

.modal-dialog[b-np73rcld8e] {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1051;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.modal-content[b-np73rcld8e] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Cabeçalho do Modal */
.modal-header[b-np73rcld8e] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.modal-title[b-np73rcld8e] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-title i[b-np73rcld8e] {
    font-size: 1.25rem;
    color: #3182ce;
}

/* Corpo do Modal */
.modal-body[b-np73rcld8e] {
    padding: 1.5rem 1rem;
    overflow-y: auto;
    flex: 1;
}

/* Rodapé do Modal */
.modal-footer[b-np73rcld8e] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

/* Botões */
.btn[b-np73rcld8e] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn i[b-np73rcld8e] {
    font-size: 1rem;
}

.btn-outline-secondary[b-np73rcld8e] {
    color: #4a5568;
    border: 1px solid #cbd5e0;
    background-color: white;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
}

.btn-outline-secondary:hover[b-np73rcld8e] {
    background-color: #f7fafc;
    border-color: #a0aec0;
}

.btn-primary[b-np73rcld8e] {
    color: white;
    background-color: #3182ce;
    border: 1px solid #2c5282;
}

.btn-primary:hover[b-np73rcld8e] {
    background-color: #2c5282;
}

.btn-success[b-np73rcld8e] {
    color: white;
    background-color: #48bb78;
    border: 1px solid #2f855a;
}

.btn-success:hover[b-np73rcld8e] {
    background-color: #2f855a;
}

/* Animações */
@keyframes fadeIn-b-np73rcld8e {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn-b-np73rcld8e {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 640px) {
    .modal-dialog[b-np73rcld8e] {
        margin: 1rem;
    }

    .modal-dialog.modal-lg[b-np73rcld8e] {
        max-width: 100%;
    }

    .modal-footer[b-np73rcld8e] {
        flex-direction: column;
    }

    .modal-footer .btn[b-np73rcld8e] {
        width: 100%;
        justify-content: center;
    }
}

/* Estilos específicos do modal de pesquisa */
.search-filters[b-np73rcld8e] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.input-group[b-np73rcld8e] {
    display: flex;
    width: 100%;
}

.input-group-text[b-np73rcld8e] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 6px 0 0 6px;
}

.form-control[b-np73rcld8e] {
    flex: 1;
    padding: 0.625rem;
    border: 1px solid #e2e8f0;
    border-radius: 0 6px 6px 0;
    font-size: 0.875rem;
}

.form-control:focus[b-np73rcld8e] {
    outline: none;
    border-color: #e2e8f0;
    box-shadow: none;
}

/* Resultados */
.results-container[b-np73rcld8e] {
    margin-top: 1rem;
}

.results-list[b-np73rcld8e] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.client-item[b-np73rcld8e] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.client-item:hover[b-np73rcld8e] {
    background-color: #f7fafc;
    border-color: #cbd5e0;
}

.client-info[b-np73rcld8e] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.client-main[b-np73rcld8e] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.client-name[b-np73rcld8e] {
    font-weight: 600;
    color: #2d3748;
}

.client-details[b-np73rcld8e] {
    display: flex;
    gap: 1rem;
    color: #4a5568;
    font-size: 0.875rem;
}

.client-address[b-np73rcld8e] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #718096;
    font-size: 0.875rem;
}

.client-address i[b-np73rcld8e] {
    margin-top: 0.125rem;
}

/* Empty State */
.empty-state[b-np73rcld8e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
    color: #718096;
}

.empty-state i[b-np73rcld8e] {
    font-size: 2.5rem;
    color: #cbd5e0;
    margin-bottom: 1rem;
}

.empty-state p[b-np73rcld8e] {
    margin: 0;
    font-size: 0.938rem;
}

/* Loading State */
.loading-state[b-np73rcld8e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 1rem;
    color: #718096;
}

.spinner-border[b-np73rcld8e] {
    width: 2rem;
    height: 2rem;
    border: 3px solid #e2e8f0;
    border-top-color: #3182ce;
    border-radius: 50%;
    animation: spin-b-np73rcld8e 1s linear infinite;
}

@keyframes spin-b-np73rcld8e {
    to { transform: rotate(360deg); }
} 
/* /Pages/Shared/ModalPesquisaEndereco.razor.rz.scp.css */
/* Base do Modal */
.modal-backdrop[b-b4vr04gzbw] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    animation: fadeIn-b-b4vr04gzbw 0.2s ease-out;
}

.modal-dialog[b-b4vr04gzbw] {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1051;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.modal-content[b-b4vr04gzbw] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Cabeçalho do Modal */
.modal-header[b-b4vr04gzbw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.modal-title[b-b4vr04gzbw] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-title i[b-b4vr04gzbw] {
    font-size: 1.25rem;
    color: #3182ce;
}

/* Corpo do Modal */
.modal-body[b-b4vr04gzbw] {
    padding: 1.5rem 1rem;
    overflow-y: auto;
    flex: 1;
}

/* Rodapé do Modal */
.modal-footer[b-b4vr04gzbw] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

/* Botões */
.btn[b-b4vr04gzbw] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn i[b-b4vr04gzbw] {
    font-size: 1rem;
}

.btn-outline-secondary[b-b4vr04gzbw] {
    color: #4a5568;
    border: 1px solid #cbd5e0;
    background-color: white;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
}

.btn-outline-secondary:hover[b-b4vr04gzbw] {
    background-color: #f7fafc;
    border-color: #a0aec0;
}

.btn-primary[b-b4vr04gzbw] {
    color: white;
    background-color: #3182ce;
    border: 1px solid #2c5282;
}

.btn-primary:hover[b-b4vr04gzbw] {
    background-color: #2c5282;
}

.btn-success[b-b4vr04gzbw] {
    color: white;
    background-color: #48bb78;
    border: 1px solid #2f855a;
}

.btn-success:hover[b-b4vr04gzbw] {
    background-color: #2f855a;
}

/* Animações */
@keyframes fadeIn-b-b4vr04gzbw {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn-b-b4vr04gzbw {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 640px) {
    .modal-dialog[b-b4vr04gzbw] {
        margin: 1rem;
    }

    .modal-dialog.modal-lg[b-b4vr04gzbw] {
        max-width: 100%;
    }

    .modal-footer[b-b4vr04gzbw] {
        flex-direction: column;
    }

    .modal-footer .btn[b-b4vr04gzbw] {
        width: 100%;
        justify-content: center;
    }
}

/* Estilos específicos do modal de pesquisa */
.search-filters[b-b4vr04gzbw] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.input-group[b-b4vr04gzbw] {
    display: flex;
    width: 100%;
}

.input-group-text[b-b4vr04gzbw] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 6px 0 0 6px;
}

.form-control[b-b4vr04gzbw] {
    flex: 1;
    padding: 0.625rem;
    border: 1px solid #e2e8f0;
    border-radius: 0 6px 6px 0;
    font-size: 0.875rem;
}

.form-control:focus[b-b4vr04gzbw] {
    outline: none;
    border-color: #e2e8f0;
    box-shadow: none;
}

/* Resultados */
.results-container[b-b4vr04gzbw] {
    margin-top: 1rem;
}

.results-list[b-b4vr04gzbw] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.client-item[b-b4vr04gzbw] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.client-item:hover[b-b4vr04gzbw] {
    background-color: #f7fafc;
    border-color: #cbd5e0;
}

.client-info[b-b4vr04gzbw] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.client-main[b-b4vr04gzbw] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.client-name[b-b4vr04gzbw] {
    font-weight: 600;
    color: #2d3748;
}

.client-details[b-b4vr04gzbw] {
    display: flex;
    gap: 1rem;
    color: #4a5568;
    font-size: 0.875rem;
}

.client-address[b-b4vr04gzbw] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #718096;
    font-size: 0.875rem;
}

.client-address i[b-b4vr04gzbw] {
    margin-top: 0.125rem;
}

/* Empty State */
.empty-state[b-b4vr04gzbw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
    color: #718096;
}

.empty-state i[b-b4vr04gzbw] {
    font-size: 2.5rem;
    color: #cbd5e0;
    margin-bottom: 1rem;
}

.empty-state p[b-b4vr04gzbw] {
    margin: 0;
    font-size: 0.938rem;
}

/* Loading State */
.loading-state[b-b4vr04gzbw] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 1rem;
    color: #718096;
}

.spinner-border[b-b4vr04gzbw] {
    width: 2rem;
    height: 2rem;
    border: 3px solid #e2e8f0;
    border-top-color: #3182ce;
    border-radius: 50%;
    animation: spin-b-b4vr04gzbw 1s linear infinite;
}

@keyframes spin-b-b4vr04gzbw {
    to { transform: rotate(360deg); }
} 
/* /Pages/Shared/ModalPesquisaItem.razor.rz.scp.css */
.modal-backdrop[b-629i6nsahd] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    animation: fadeIn-b-629i6nsahd 0.2s ease-out;
}

.modal-dialog[b-629i6nsahd] {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1051;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.modal-content[b-629i6nsahd] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Cabeçalho */
.modal-header[b-629i6nsahd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.modal-title[b-629i6nsahd] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-title i[b-629i6nsahd] {
    font-size: 1.25rem;
    color: #3182ce;
}

/* Corpo do Modal */
.modal-body[b-629i6nsahd] {
    padding: 1.5rem 1rem;
    overflow-y: auto;
    flex: 1;
}

/* Campo de Pesquisa */
.search-container[b-629i6nsahd] {
    margin-bottom: 1.5rem;
}

.input-group[b-629i6nsahd] {
    display: flex;
    width: 100%;
}

.input-group-text[b-629i6nsahd] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 6px 0 0 6px;
}

.form-control[b-629i6nsahd] {
    flex: 1;
    padding: 0.625rem;
    border: 1px solid #e2e8f0;
    border-radius: 0 6px 6px 0;
    font-size: 0.875rem;
}

.form-control:focus[b-629i6nsahd] {
    outline: none;
    border-color: #e2e8f0;
    box-shadow: none;
}

/* Lista de Resultados */
.results-container[b-629i6nsahd] {
    margin-top: 1rem;
}

.results-list[b-629i6nsahd] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.25rem;
}

.item-card[b-629i6nsahd] {
    display: flex;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.item-card:hover[b-629i6nsahd] {
    background-color: #f7fafc;
    border-color: #cbd5e0;
}

.item-info[b-629i6nsahd] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.item-info i[b-629i6nsahd] {
    font-size: 1.25rem;
    color: #718096;
}

.item-details[b-629i6nsahd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.item-name[b-629i6nsahd] {
    font-weight: 500;
    color: #2d3748;
}

.item-price[b-629i6nsahd] {
    font-weight: 600;
    color: #3182ce;
}

/* Estados de Loading e Empty */
.loading-state[b-629i6nsahd],
.empty-state[b-629i6nsahd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: #718096;
}

.loading-state i[b-629i6nsahd],
.empty-state i[b-629i6nsahd] {
    font-size: 2rem;
    color: #cbd5e0;
    margin-bottom: 1rem;
}

/* Footer */
.modal-footer[b-629i6nsahd] {
    display: flex;
    justify-content: center;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.btn-secondary[b-629i6nsahd] {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
    padding: 0.375rem 2rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
}

.btn-secondary:hover[b-629i6nsahd] {
    background-color: #5c636a;
    border-color: #565e64;
}

/* Animações */
@keyframes fadeIn-b-629i6nsahd {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsividade */
@media (max-width: 768px) {
    .modal-dialog[b-629i6nsahd] {
        width: 95%;
        margin: 0.5rem;
    }

    .item-details[b-629i6nsahd] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
} 
/* /Pages/Shared/ModalPesquisaTecnico.razor.rz.scp.css */
/* Base do Modal */
.modal-backdrop[b-w6pyvpm4vy] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    animation: fadeIn-b-w6pyvpm4vy 0.2s ease-out;
}

.modal-dialog[b-w6pyvpm4vy] {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1051;
    height: 600px;
    display: flex;
    flex-direction: column;
}

.modal-content[b-w6pyvpm4vy] {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Cabeçalho */
.modal-header[b-w6pyvpm4vy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.modal-title[b-w6pyvpm4vy] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-title i[b-w6pyvpm4vy] {
    font-size: 1.25rem;
    color: #3182ce;
}

/* Corpo do Modal */
.modal-body[b-w6pyvpm4vy] {
    padding: 1.5rem 1rem;
    overflow-y: auto;
    flex: 1;
}

/* Campo de Pesquisa */
.search-container[b-w6pyvpm4vy] {
    margin-bottom: 1.5rem;
}

.input-group[b-w6pyvpm4vy] {
    display: flex;
    width: 100%;
}

.input-group-text[b-w6pyvpm4vy] {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 6px 0 0 6px;
}

.form-control[b-w6pyvpm4vy] {
    flex: 1;
    padding: 0.625rem;
    border: 1px solid #e2e8f0;
    border-radius: 0 6px 6px 0;
    font-size: 0.875rem;
}

.form-control:focus[b-w6pyvpm4vy] {
    outline: none;
    border-color: #e2e8f0;
    box-shadow: none;
}

/* Lista de Resultados */
.results-container[b-w6pyvpm4vy] {
    margin-top: 1rem;
}

.results-list[b-w6pyvpm4vy] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.25rem;
}

.tech-item[b-w6pyvpm4vy] {
    display: flex;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tech-item:hover[b-w6pyvpm4vy] {
    background-color: #f7fafc;
    border-color: #cbd5e0;
}

.tech-info[b-w6pyvpm4vy] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tech-info i[b-w6pyvpm4vy] {
    font-size: 1.25rem;
    color: #718096;
}

.tech-name[b-w6pyvpm4vy] {
    font-weight: 500;
    color: #2d3748;
}

/* Estados de Loading e Empty */
.loading-state[b-w6pyvpm4vy],
.empty-state[b-w6pyvpm4vy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: #718096;
}

.loading-state i[b-w6pyvpm4vy],
.empty-state i[b-w6pyvpm4vy] {
    font-size: 2rem;
    color: #cbd5e0;
    margin-bottom: 1rem;
}

/* Footer */
.modal-footer[b-w6pyvpm4vy] {
    display: flex;
    justify-content: center;
    padding: 1rem;
    border-top: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.btn-secondary[b-w6pyvpm4vy] {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
    padding: 0.375rem 2rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
}

.btn-secondary:hover[b-w6pyvpm4vy] {
    background-color: #5c636a;
    border-color: #565e64;
}

/* Animações */
@keyframes fadeIn-b-w6pyvpm4vy {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsividade */
@media (max-width: 768px) {
    .modal-dialog[b-w6pyvpm4vy] {
        width: 95%;
        margin: 0.5rem;
    }
} 
/* /Pages/Shared/ResumoContabilCard.razor.rz.scp.css */
.date-actions[b-xg6l0hd0pa] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-input[b-xg6l0hd0pa] {
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #4a5568;
    background-color: white;
    cursor: pointer;
    font-size: 0.875rem;
    width: 150px;
}

    .date-input:hover[b-xg6l0hd0pa] {
        border-color: #cbd5e0;
    }

    .date-input:focus[b-xg6l0hd0pa] {
        outline: none;
        border-color: #3182ce;
        box-shadow: 0 0 0 1px #3182ce;
    }

.custom-btn[b-xg6l0hd0pa] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #000000;
    background-color: #e5e8eb;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

    .custom-btn:hover[b-xg6l0hd0pa] {
        background-color: #2b6cb0;
        color: #ffffff;
    }

.item-list[b-xg6l0hd0pa] {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.item-header[b-xg6l0hd0pa] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background-color: #f1f5f9;
    border-radius: 0.5rem;
    margin-bottom: 10px;
}

    .item-header .item-title[b-xg6l0hd0pa] {
        font-size: 1rem;
        font-weight: bold;
    }

.item-line[b-xg6l0hd0pa] {
    margin-bottom: 0.5rem;
}


/* CARDS */

/* Card Condensado */
.card-sr[b-xg6l0hd0pa] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

    .card-sr:hover[b-xg6l0hd0pa] {
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .card-sr.active[b-xg6l0hd0pa] {
        box-shadow: 0 0 0 2px #3182ce, 0 4px 6px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }

    .card-sr.disabled[b-xg6l0hd0pa] {
        opacity: 0.5;
        cursor: not-allowed;
        filter: grayscale(0.5);
    }

        .card-sr.disabled:hover[b-xg6l0hd0pa] {
            transform: none;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .card-sr.disabled .action-btn[b-xg6l0hd0pa] {
            pointer-events: none;
            opacity: 0.5;
        }

.card-body-sr.compact[b-xg6l0hd0pa] {
    padding: 1rem;
}

.card-header-sr[b-xg6l0hd0pa] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

/* VALUES */

.counter[b-xg6l0hd0pa] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.period-number[b-xg6l0hd0pa] {
    font-size: 1.0rem;
}

.counter .number[b-xg6l0hd0pa] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1;
}

.counter .label[b-xg6l0hd0pa] {
    font-size: 0.75rem;
    color: #718096;
}

/*CARD ACTIONS*/

.card-actions-sr[b-xg6l0hd0pa] {
    display: flex;
    gap: 0.5rem;
}

.action-btn[b-xg6l0hd0pa] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

    .action-btn.add[b-xg6l0hd0pa] {
        background-color: #ebf5ff;
        color: #3182ce;
    }

        .action-btn.add:hover[b-xg6l0hd0pa] {
            background-color: #3182ce;
            color: white;
        }

    .action-btn.close[b-xg6l0hd0pa] {
        background-color: #fff5f5;
        color: #e53e3e;
    }

        .action-btn.close:hover[b-xg6l0hd0pa] {
            background-color: #e53e3e;
            color: white;
        }

    .action-btn.print[b-xg6l0hd0pa] {
        background-color: #3182ce;
        color: #fdfdfd;
        max-width: 100px;
    }

        .action-btn.print:hover[b-xg6l0hd0pa] {
            background-color: #064580;
            color: white;
        }

    .action-btn i[b-xg6l0hd0pa] {
        font-size: 1rem;
    }


.finance-item[b-xg6l0hd0pa] {
    display: flex;
    align-items: stretch;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s, transform 0.2s;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e2e8f0;
    min-height: 64px;
}

.finance-item:hover[b-xg6l0hd0pa] {
    box-shadow: 0 4px 6px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.finance-info[b-xg6l0hd0pa] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Cabeçalho do Card */
.finance-header[b-xg6l0hd0pa] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 0.75rem 1rem;
    background-color: #f8fafc;
    border: none;
    box-shadow: none;
    min-height: 64px;
}

.finance-user-name[b-xg6l0hd0pa] {
    font-size: 1rem;
    color: #4e4e4e;
    font-weight: 600;
}

.finance-monetary[b-xg6l0hd0pa] {
    font-size: 1rem;
    font-weight: bold;
}

/* Botão de Ação */
.finance-actions[b-xg6l0hd0pa] {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    border-left: 1px solid #e2e8f0;
    min-width: 60px;
    background-color: #f8fafc;
    min-height: 64px;
    box-shadow: none;
}

/* Estilo comum para ambos os botões */
.finance-action[b-xg6l0hd0pa] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: none;
    background: #f8fafc;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.finance-action:hover[b-xg6l0hd0pa] {
    background: #e2e8f0;
}

.finance-action i[b-xg6l0hd0pa] {
    font-size: 1.5rem;
    color: #3182ce;
    transition: color 0.2s;
}

.finance-action:hover i[b-xg6l0hd0pa] {
    color: #2c5282;
}

.finance-details[b-xg6l0hd0pa] {
    background: #f8fafc;
    border-radius: 0 0 8px 8px;
    border: 1px solid #e2e8f0;
    border-top: none;
    margin: 0 0 15px 0;
    padding: 1rem 1.5rem;
    animation: fadeIn-b-xg6l0hd0pa 0.2s;
}

.details-header[b-xg6l0hd0pa] {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.details-list[b-xg6l0hd0pa] {
    list-style: disc inside;
    margin: 0;
    padding-left: 1rem;
    color: #4a5568;
    font-size: 0.98rem;
}

.details-list li[b-xg6l0hd0pa] {
    margin-bottom: 0.3rem;
}

@keyframes fadeIn-b-xg6l0hd0pa {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* /Pages/Shared/ServicoResumoCard.razor.rz.scp.css */
.service-list[b-iofnh6i7w4] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.service-item[b-iofnh6i7w4] {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    margin-bottom: 15px;
}

    .service-item:hover[b-iofnh6i7w4] {
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }

        .service-item:hover .service-action i[b-iofnh6i7w4] {
            transform: translateX(4px);
            color: #2c5282;
        }

.service-info[b-iofnh6i7w4] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Cabeçalho do Card */
.service-header[b-iofnh6i7w4] {
    min-height: 64px;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.protocol-badge[b-iofnh6i7w4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .protocol-badge .number[b-iofnh6i7w4] {
        font-size: 0.875rem;
        font-weight: 600;
        color: #2d3748;
    }




.status-dot[b-iofnh6i7w4] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

    .status-dot.active[b-iofnh6i7w4] {
        background-color: #48bb78;
        box-shadow: 0 0 0 2px rgba(72, 187, 120, 0.2);
    }

.service-date[b-iofnh6i7w4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #718096;
    font-size: 0.813rem;
}

    .service-date i[b-iofnh6i7w4] {
        font-size: 0.875rem;
        color: #a0aec0;
    }

/* Conteúdo Principal */
.service-content[b-iofnh6i7w4] {
    display: flex;
    padding: 1rem;
    gap: 1.5rem;
}

.content-left[b-iofnh6i7w4], .content-right[b-iofnh6i7w4] {
    flex: 1;
}

.content-divider[b-iofnh6i7w4] {
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
}

/* Informações do Cliente */
.client-info[b-iofnh6i7w4] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .client-info .name[b-iofnh6i7w4] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #2d3748;
    }

        .client-info .name strong[b-iofnh6i7w4] {
            font-size: 0.938rem;
        }

    .client-info .address[b-iofnh6i7w4] {
        display: flex;
        align-items: center;
        gap: 0.375rem;
        color: #718096;
        font-size: 0.813rem;
    }

.neighborhood[b-iofnh6i7w4] {
    color: #3182ce;
    font-weight: 600;
}

/* Informações do Técnico e Serviço */
.technician-info[b-iofnh6i7w4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.875rem;
}

.service-description[b-iofnh6i7w4] {
    color: #718096;
    font-size: 0.813rem;
    line-height: 1.4;
}

/* Botão de Ação */
.service-actions[b-iofnh6i7w4] {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #e2e8f0;
    min-width: 60px;
}

/* Estilo comum para ambos os botões */
.service-action[b-iofnh6i7w4] {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
    width: 100%;
}

    /* Estilo específico para o botão de detalhes (superior) */
    .service-action:not(.complete)[b-iofnh6i7w4] {
        border-bottom: 1px solid #e2e8f0;
        min-height: 64px;
        padding: 0 1rem;
        background-color: #f8fafc;
        flex: none;
    }

        .service-action:not(.complete):hover[b-iofnh6i7w4] {
            background-color: #ebf8ff;
        }

            .service-action:not(.complete):hover i[b-iofnh6i7w4] {
                transform: translateX(4px);
                color: #2c5282;
            }

        .service-action:not(.complete) i[b-iofnh6i7w4] {
            font-size: 1.25rem;
            color: #3182ce;
            transition: all 0.2s ease;
        }

    /* Estilo específico para o botão de conclusão (inferior) */
    .service-action.complete[b-iofnh6i7w4] {
        flex: 1;
        color: #48bb78;
        padding: 1rem;
        background-color: #f7fdf9;
        display: flex;
        align-items: center;
    }

        .service-action.complete:hover[b-iofnh6i7w4] {
            background-color: #f0fff4;
        }

            .service-action.complete:hover i[b-iofnh6i7w4] {
                transform: scale(1.1);
            }

        .service-action.complete i[b-iofnh6i7w4] {
            font-size: 1.25rem;
            transition: all 0.2s ease;
        }

/* Responsividade */
@media (max-width: 768px) {
    .service-content[b-iofnh6i7w4] {
        flex-direction: column;
    }

    .content-divider[b-iofnh6i7w4] {
        width: 100%;
        height: 1px;
        margin: 0.75rem 0;
    }

    .service-header[b-iofnh6i7w4] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .service-date[b-iofnh6i7w4] {
        width: 100%;
        justify-content: space-between;
    }
}



/* Atualize apenas estas partes do CSS existente */

.service-header[b-iofnh6i7w4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.header-left[b-iofnh6i7w4] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.protocol-badge[b-iofnh6i7w4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-right: 1rem;
    border-right: 2px solid #e2e8f0;
}

.client-name[b-iofnh6i7w4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .client-name i[b-iofnh6i7w4] {
        color: #718096;
    }

    .client-name strong[b-iofnh6i7w4] {
        font-size: 0.938rem;
        color: #2d3748;
    }

.service-schedule[b-iofnh6i7w4] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #718096;
    font-size: 0.813rem;
}

.schedule-period[b-iofnh6i7w4] {
    background-color: #edf2f7;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: #4a5568;
    font-weight: 500;
}

.service-description[b-iofnh6i7w4] {
    font-size: 0.938rem;
    color: #2d3748;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.address[b-iofnh6i7w4] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #718096;
    font-size: 0.813rem;
    margin-top: 0.5rem;
}

/* Ajuste o responsivo também */
@media (max-width: 768px) {
    .service-header[b-iofnh6i7w4] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .header-left[b-iofnh6i7w4] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .protocol-badge[b-iofnh6i7w4] {
        border-right: none;
        border-bottom: 2px solid #e2e8f0;
        padding-right: 0;
        padding-bottom: 0.5rem;
    }

    .service-schedule[b-iofnh6i7w4] {
        width: 100%;
        justify-content: space-between;
    }
}

.service-author[b-iofnh6i7w4] {
    font-size: 0.8rem;
    background-color: #f8fafc;
    height: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-top: 1px solid #e2e8f0;
    justify-content: space-between;
    align-items: center; /* Alinha verticalmente os itens */
    gap: 1rem; /* Espaçamento opcional entre os itens */
}

.service-author-info[b-iofnh6i7w4] {
    flex: 1;
    text-align: start;
}

.service-author-date[b-iofnh6i7w4] {
    flex: 1;
    text-align: end;
}
/* /Pages/Usuarios/UsuarioIndex.razor.rz.scp.css */
/* /Shared/Pagination.razor.rz.scp.css */
