body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Impede rolagem horizontal */
    height: 100vh;
    /* Garante que ocupe toda a altura da tela */
    background-color: #0d0d0d;
    color: #00ffff;
    font-family: 'Orbitron', sans-serif;
}

#map {
    height: 100vh;
    width: 100vw;
    position: relative;
}

/* Menu principal */
.menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(40, 40, 40, 0.9);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999;
    box-shadow: 0px 0 5px 2px #00ffff;
}

.menu button {
    background: none;
    border: none;
    cursor: pointer;
    margin: 5px 0;
    padding: 8px;
    color: white;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.2s;
    box-shadow: 0px 0 5px 2px #00ffff;
}

.menu button:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0 5px 4px #cfd6d6;

}

/* Ícone de tela cheia dinâmico */
.fullscreen-icon::before {
    content: "⛶";
}

.fullscreen-icon.fullscreen-active::before {
    content: "🗗";
}

.dropdown {
    position: absolute;
    top: 22px;
    right: 84px;
    background: #2a2a2a;
    color: white;
    padding: 15px;
    border-radius: 8px;
    display: none;
    z-index: 1000;
    width: 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.dropdown.show {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.dropdown-header {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #ddd;
    padding-bottom: 8px;
    border-bottom: 1px solid #444;
}

.dropdown-option {
    padding: 8px 0;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.dropdown-option input {
    margin-right: 10px;
}

.dropdown-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Estilo específico para o menu da equipe */
#team-members-container {
    max-height: 200px;
    overflow-y: auto;
}

.team-member {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.team-member img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.team-member-info {
    flex: 1;
}

.team-member-name {
    font-weight: bold;
    margin-bottom: 2px;
}

.team-member-role {
    font-size: 12px;
    color: #aaa;
}

#team-members-container::-webkit-scrollbar {
    width: 8px;
}

#team-members-container::-webkit-scrollbar-track {
    background: transparent;
}

#team-members-container::-webkit-scrollbar-thumb {
    background-color: #00ffff;
    /* Cor da barra */
    border-radius: 10px;
    box-shadow: 0px 0 5px 2px #00ffff;
    /* Sombra ao redor da barra */
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Estilo para as fotos em movimento */
.moving-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Remove estilos padrão do popup do Leaflet */
.leaflet-popup-tip,
.leaflet-popup-content-wrapper {
    background: transparent;
    border: none;
    box-shadow: none;
}



/* Estiliza o contêiner do formulário (Login e Cadastro) */
.login-container,
.register-container {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 1000;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Estiliza os campos de entrada */
.login-container input,
.register-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
    outline: none;
}

/* Placeholder com cor mais clara */
.login-container input::placeholder,
.register-container input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Estiliza os botões */
.login-container button,
.register-container button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    background: #22b4b5;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Hover nos botões */
.login-container button:hover,
.register-container button:hover {
    background: #1a8a8b;
}

/* Links para alternar entre os formulários */
.login-container a,
.register-container a {
    color: #22b4b5;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-top: 10px;
}

.login-container a:hover,
.register-container a:hover {
    color: #1a8a8b;
}

/* Mensagem de erro */
#message,
#register-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
}



/* Remove qualquer margem/padding padrão do body */


/* Sidebar fixa e sobreposta */
.sidebar {
    width: 60px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #111;
    overflow: hidden;
    transition: width 0.3s ease;
    z-index: 1000;
    padding-top: 20px;
    box-shadow: 2px 0 5px #00ffff;
}

/* Expansão da sidebar ao passar o mouse */
.sidebar:hover {
    width: 200px;
}

/* Container ajustado para ocupar a tela corretamente */
.container-fluid {
    margin-left: 60px;
    /* Mantém espaço para a sidebar pequena */
    transition: margin-left 0.3s ease;
    min-height: 100vh;
    /* Garante que ocupe toda a altura da tela */
    padding: 20px;
    /* Espaçamento interno */
    overflow-y: auto;
    /* Impede rolagem desnecessária */
}

h2,
h3 {
    color: #00ffcc;
    text-shadow: 0 0 5px #00ffcc;
}

/* Move o conteúdo apenas quando a sidebar estiver expandida */
.sidebar:hover~.container-fluid {
    margin-left: 200px;
}

/* Formulário */
input[type="text"],
.form-control {
    background-color: #111;
    border: 1px solid #00ffff;
    color: #00ffff;
}

input[type="text"]::placeholder {
    color: #00ffff88;
}

.btn-primary {
    background-color: #00ffff;
    border-color: #00cccc;
    color: #000;
    text-shadow: none;
    box-shadow: 0 0 10px #00ffff88;
}

.btn-primary:hover {
    background-color: #00cccc;
    color: #000;
    box-shadow: 0 0 15px #00ffff;
}

.btn-danger {
    background-color: #ff0033;
    border-color: #cc002a;
    color: #000;
    box-shadow: 0 0 10px #ff003388;
}

.btn-danger:hover {
    background-color: #cc002a;
    color: #000;
    box-shadow: 0 0 15px #ff0033;
}

/* Amarelo neon */
.btn-warning {
    background-color: #ffff00;
    border-color: #cccc00;
    color: #000;
    box-shadow: 0 0 10px #ffff0088;
}

.btn-warning:hover {
    background-color: #cccc00;
    color: #000;
    box-shadow: 0 0 15px #ffff00;
}

/* Verde neon */
.btn-success {
    background-color: #00ff66;
    border-color: #00cc52;
    color: #000;
    box-shadow: 0 0 10px #00ff6688;
}

.btn-success:hover {
    background-color: #00cc52;
    color: #000;
    box-shadow: 0 0 15px #00ff66;
}

/* Azul neon (tipo info) */
.btn-info {
    background-color: #3399ff;
    border-color: #2a80cc;
    color: #000;
    box-shadow: 0 0 10px #3399ff88;
}

.btn-info:hover {
    background-color: #2a80cc;
    color: #000;
    box-shadow: 0 0 15px #3399ff;
}

/* Roxo neon (opcional - tipo secundário custom) */
.btn-secondary {
    background-color: #aa00ff;
    border-color: #8800cc;
    color: #000;
    box-shadow: 0 0 10px #aa00ff88;
}

.btn-secondary:hover {
    background-color: #8800cc;
    color: #000;
    box-shadow: 0 0 15px #aa00ff;
}


@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 10px;
}


.nav-item {
    display: flex;
    align-items: center;
    color: #00ffff;
    text-decoration: none;
    padding: 10px 20px;
    transition: background 0.3s ease;
    transition: all 0.3s ease-in-out;
}

.table:hover {
    box-shadow: 0 0 10px #00ffff44;
}

.nav-item:hover {
    background-color: #00ffff22;
    color: #fff;
    text-shadow: 0 0 5px #00ffff;
}

.nav-icon {
    margin-right: 10px;
    font-size: 18px;

}

.nav-text {
    display: none;
}

.sidebar:hover .nav-text {
    display: inline;
}

.content {
    padding: 20px;
    transition: padding-left 0.3s ease;
}



.table-cyber {
    width: 100%;
    border-collapse: collapse;
    background-color: #111 !important;
    color: #00ffff !important;
    border: 1px solid #00ffff55 !important;
    box-shadow: 0 0 10px #00ffff33;
}

.table-cyber th,
.table-cyber td {
    padding: 12px;
    border: 1px solid #00ffff44 !important;
    text-align: center;
    transition: background 0.3s ease;
}

.table-cyber thead {
    background-color: #111;
}

.table-cyber tbody tr:hover {
    background-color: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 10px #00ffff44;
}

.card {
    background-color: #111 !important;
    border: 1px solid #00ffff55;
    color: #00ffff;
    box-shadow: 0 0 15px #00ffff22;
}

/* Cabeçalho do card */
.card-header {
    background-color: #0f1f1f !important;
    border-bottom: 1px solid #00ffff33;
    color: #00ffff !important;
    text-shadow: 0 0 4px #00ffff;
}

/* Inputs e selects do formulário */
.form-control {
    background-color: #111 !important;
    border: 1px solid #00ffff !important;
    color: #00ffff !important;
}

.form-control:focus {
    background-color: #111;
    border-color: #00cccc;
    box-shadow: 0 0 10px #00ffff88;
    color: #00ffff;
}

.input-group-text {
    background-color: #111;
    border: 1px solid #00ffff;
    color: #00ffff;
}

/* Labels do formulário */
.form-label {
    color: #00ffff;
    text-shadow: 0 0 3px #00ffff88;
}

/* Imagem de perfil com borda neon */
#profileImage {
    border: 2px solid #00ffff;
    box-shadow: 0 0 10px #00ffff55;
}

/* Botão de salvar com visual cyberpunk */
.btn-success {
    background-color: #00ff99 !important;
    border-color: #00cc88 !important;
    color: #000 !important;
    text-shadow: none;
    box-shadow: 0 0 10px #00ff9966;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #00cc88 !important;
    box-shadow: 0 0 15px #00ffcc;
    transform: scale(1.03);
}

/* Desabilitado estilizado */
.btn[disabled] {
    background-color: #003333 !important;
    border-color: #005555 !important;
    color: #00ffff88 !important;
    box-shadow: none;
}








.login-container,
.register-container {
    background-color: #0d0d1a;
    padding: 30px;
    max-width: 400px;
    margin: 60px auto;
    border: 1px solid #00ffff55;
    border-radius: 14px;
    box-shadow: 0 0 20px #00ffff33;
    color: #00ffff;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.login-container h2,
.register-container h2 {
    color: #00ffff;
    margin-bottom: 25px;
    text-shadow: 0 0 6px #00ffff;
    font-size: 24px;
}

.login-container input,
.register-container input {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    background-color: #111;
    border: 1px solid #00ffff;
    color: #00ffff;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 0 8px #00ffff33;
    transition: 0.3s ease;
}

.login-container input:focus,
.register-container input:focus {
    outline: none;
    border-color: #00cccc;
    box-shadow: 0 0 15px #00ffffaa;
}

.login-container button,
.register-container button {
    background-color: #00ff99;
    color: #000;
    border: none;
    padding: 12px 25px;
    margin-top: 15px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: 0 0 15px #00ff9977;
    transition: 0.3s ease;
    cursor: pointer;
}

.login-container button:hover,
.register-container button:hover {
    background-color: #00cc88;
    box-shadow: 0 0 25px #00ffcc;
    transform: scale(1.05);
}

.login-container a,
.register-container a {
    color: #00ffff;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-top: 20px;
    transition: 0.3s ease;
}

.login-container a:hover,
.register-container a:hover {
    text-shadow: 0 0 6px #00ffff;
}


.logo-cyberpunk {
    width: 120px;
    filter: drop-shadow(0 0 110px #00ffff) brightness(1.2);
    transition: transform 0.3s ease;
}

.logo-cyberpunk:hover {

    filter: drop-shadow(0 0 12px #00ffff) brightness(1.4);
}

.leaflet-control {
    display: none;
}

.leaflet-control-zoom {
    margin-bottom: 20px;
    margin-right: 20px;
}


.leaflet-draw.leaflet-control {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px;
    z-index: 1001;
    pointer-events: auto;
    box-shadow: 0px 0 5px 2px #00ffff;
}



.leaflet-draw-toolbar {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px;
    margin-top: 0px !important;

}

#install-btn {
    background-color: #22b4b5;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#install-btn:hover {
    background-color: #1aa0a1;
}



.sinalizador-piscando {
    animation: piscar 1s infinite;
    fill: red;
    stroke: darkred;
    stroke-width: 2;
}

@keyframes piscar {

    0%,
    100% {
        fill-opacity: 1;
        stroke-opacity: 1;
    }

    50% {
        fill-opacity: 0.2;
        stroke-opacity: 0.2;
    }
}

 