.page-menu .page-title { background-color: #000000; }.navbar-default { background-color: #000000; }.btn.btn-blue { background-color: #000000; border-color: #000000; }.list-group-item .checked  { color: #000000; }.list-group-item .details  { color: #000000; }
/* Posicionamento do Bottom Sheet */
#map {
    bottom: 0px !important;
}
.bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.bottom-sheet.collapsed {
    transform: translateY(calc(100% - 30px)); 
}
.bottom-sheet.collapsed .expanded-content {
    opacity: 0;
    pointer-events: none;
}
.bottom-sheet.collapsed .action-buttons {
    opacity: 0;
    pointer-events: none;
}

/* Alça Superior */
.drag-handle {
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    cursor: pointer;
}
.drag-handle .pill {
    width: 45px;
    height: 6px;
    background: #d1d5db;
    border-radius: 10px;
}

/* Botões */
.action-buttons {
    display: flex;
    gap: 12px;
    padding: 0 16px 16px 16px;
    overflow-x: auto; 
    scrollbar-width: none;
    transition: opacity 0.3s;
}
.action-buttons::-webkit-scrollbar {
    display: none;
}
.btn-action {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 20px;
    cursor: pointer;
}
.btn-action.bg-blue { background: #eff6ff; color: #2563eb; border-color: #bfdbfe;}
.btn-action.bg-green { background: #f0fdf4; color: #16a34a; border-color: #bbf7d0;}
.btn-action.bg-yellow { background: #fefce8; color: #ca8a04; border-color: #fef08a;}

/* Área de Dados */
.expanded-content {
    padding: 0 16px 20px 16px;
    transition: opacity 0.3s;
}
.header { display: flex; align-items: center; justify-content: space-between; }
.header h2 { margin: 0; font-size: 20px; font-weight: 700; color: #1e293b; }

.grid-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: #f8fafc;
    padding: 12px;
    border-radius: 12px;
    margin-top: 15px;
}
.info-box small { color: #64748b; font-size: 10px; text-transform: uppercase; font-weight: bold; }
.info-box p { margin: 2px 0 0 0; font-size: 14px; font-weight: 600; color: #0f172a; }
