﻿.dropArea {
    border: 2px dashed gray;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: lightgray;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    min-height: 150px;
}

    .dropArea:hover {
        background-color: antiquewhite;
        color: #333;
    }

    .dropArea input[type=file] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

.dropAreaDrug {
    background-color: darkgray;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Cor de fundo com transparência */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Garante que a sobreposição esteja acima de outros elementos */
}

bordered-grid {
    border: 1px solid #ccc; /* Cor e espessura da borda */
    border-radius: 8px; /* Cantos arredondados (opcional) */
    padding: 8px; /* Espaçamento interno */
}

/* Remove bordas de todos os elementos do MudGrid */
.no-border-grid {
    margin: 0;
    padding: 0;
    gap: 0; /* Remove espaços */
}

    .no-border-grid > .mud-grid-item {
        margin: 0;
        padding: 0;
    }

/* Remove bordas internas da MudTable */
.custom-bordered-table .mud-tr,
.custom-bordered-table .mud-td {
    border: none !important; /* Força a remoção de bordas */
}

/* Remove margens e bordas do MudPaper */
.no-border-paper {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important; /* Remove elevações */
}

/* Remove bordas gerais de qualquer elemento interno */
.no-border-tabpanel * {
    border: none !important;
}

/* Remove bordas visíveis das células */
.mud-table-container {
    border: none !important;
    box-shadow: none !important;
}

.tabela-pequena td,
.tabela-pequena th {
    font-size: 0.75rem !important;
}
.avatar-3d {
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), var(--dot) 40%, rgba(0,0,0,0.4));
    box-shadow: inset 0 1px 2px rgba(255,255,255,.45), inset 0 -2px 4px rgba(0,0,0,.35), 0 2px 6px rgba(0,0,0,.35);
}

.abax-help-assistant {
    position: fixed !important;
    right: 18px !important;
    bottom: 64px !important;
    z-index: 1300 !important;
}

.abax-help-button {
    box-shadow: 0 8px 22px rgba(0, 0, 0, .28) !important;
}

.abax-help-panel {
    position: absolute !important;
    right: 0 !important;
    bottom: 56px !important;
    width: 390px !important;
    max-width: calc(100vw - 24px) !important;
    max-height: min(620px, calc(100vh - 140px)) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    border: 1px solid rgba(128, 128, 128, .28);
    background: var(--mud-palette-surface);
}

.abax-help-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(128, 128, 128, .22);
}

.abax-help-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 12px 14px 8px;
    align-items: center;
}

.abax-help-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 14px 12px;
}

.abax-help-content {
    overflow: auto;
    padding: 14px;
}

.abax-help-section-title {
    display: block;
    margin-top: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.abax-help-list {
    margin: 6px 0 0 18px;
    padding: 0;
}

.abax-help-list li {
    margin-bottom: 5px;
}

.abax-help-result {
    justify-content: flex-start;
    text-align: left;
    padding: 8px;
    margin-top: 6px;
}

.abax-help-source {
    display: block;
    margin-top: 14px;
    opacity: .75;
}

@media (max-width: 600px) {
    .abax-help-assistant {
        right: 8px !important;
        bottom: 64px !important;
    }

    .abax-help-panel {
        width: calc(100vw - 16px) !important;
        max-width: calc(100vw - 16px) !important;
        max-height: calc(100vh - 128px) !important;
    }

    .abax-help-search {
        grid-template-columns: 1fr;
    }
}
