        /* Botão flutuante */
        .bookmarks-toggle {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1000;
            background: white;
            border: 2px solid rgba(0,0,0,0.2);
            border-radius: 4px;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 16px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .bookmarks-toggle:hover {
            background: #f4f4f4;
        }

        /* Modal - versão simplificada */
        .bookmarks-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            max-height: 80vh;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            z-index: 2000;
            border: 1px solid #ddd;
        }

        .bookmarks-modal.active {
            display: block;
        }

        .modal-header {
            padding: 15px 20px;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f8f9fa;
            border-radius: 8px 8px 0 0;
        }

        .modal-header h3 {
            margin: 0;
            color: #2c3e50;
        }

        .close-modal {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #7f8c8d;
            padding: 0 5px;
        }

        .close-modal:hover {
            color: #e74c3c;
        }

        .modal-body {
            padding: 20px;
            overflow-y: auto;
            max-height: calc(80vh - 70px);
        }

        /* Status da criação */
        .creation-status {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 20px;
            border: 1px solid #dee2e6;
        }

        .status-message {
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .status-message i {
            margin-right: 5px;
            color: #27ae60;
        }

        .new-bookmark-form {
            margin-top: 10px;
        }

        .form-group {
            margin-bottom: 10px;
        }

        .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }

        .form-group input:focus {
            outline: none;
            border-color: #3498db;
        }

        .btn {
            padding: 8px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            margin-right: 5px;
        }

        .btn-primary {
            background: #3498db;
            color: white;
        }

        .btn-primary:hover:not(:disabled) {
            background: #2980b9;
        }

        .btn-primary:disabled {
            background: #bdc3c7;
            cursor: not-allowed;
        }

        .btn-secondary {
            background: #95a5a6;
            color: white;
        }

        .btn-secondary:hover {
            background: #7f8c8d;
        }

        .btn-success {
            background: #27ae60;
            color: white;
        }

        .btn-success:hover {
            background: #229954;
        }

        .btn-danger {
            background: #e74c3c;
            color: white;
        }

        .btn-danger:hover {
            background: #c0392b;
        }

        .btn-sm {
            padding: 5px 10px;
            font-size: 12px;
        }

        /* Lista de bookmarks */
        .bookmarks-list {
            border-top: 1px solid #e0e0e0;
            padding-top: 20px;
        }

        .bookmarks-list h4 {
            margin-bottom: 15px;
            color: #34495e;
        }

        .bookmark-item {
            background: #f8f9fa;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            padding: 12px;
            margin-bottom: 10px;
        }

        .bookmark-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .bookmark-name {
            font-weight: 600;
            color: #2c3e50;
            cursor: help;
        }

        .bookmark-coords {
            font-size: 11px;
            color: #7f8c8d;
            font-family: monospace;
        }

        .bookmark-actions {
            display: flex;
            gap: 5px;
            justify-content: flex-end;
        }

        .bookmark-actions button {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 14px;
            padding: 5px 8px;
            border-radius: 3px;
        }

        .edit-bookmark { color: #f39c12; }
        .edit-bookmark:hover { background: #f39c12; color: white; }

        .move-bookmark { color: #3498db; }
        .move-bookmark:hover { background: #3498db; color: white; }

        .delete-bookmark { color: #e74c3c; }
        .delete-bookmark:hover { background: #e74c3c; color: white; }

        /* Modo de edição */
        .edit-mode {
            display: none;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #e0e0e0;
        }

        .edit-mode.active {
            display: flex;
            gap: 5px;
        }

        .edit-mode input {
            flex: 1;
            padding: 6px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        /* Modo de movimento */
        .move-mode-active {
            cursor: crosshair !important;
        }

        .move-instructions {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #3498db;
            color: white;
            padding: 12px 24px;
            border-radius: 40px;
            z-index: 3000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            font-weight: 500;
        }

        .success-message {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #27ae60;
            color: white;
            padding: 12px 24px;
            border-radius: 40px;
            z-index: 3000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        /* Overlay semi-transparente */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 1999;
        }

        .modal-overlay.active {
            display: block;
        }

        /* Tooltip personalizado */
        .leaflet-tooltip {
            background: #2c3e50;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 5px 10px;
            font-size: 12px;
        }